(Snow)flakes for fluffy winters.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(packages): add Lutris (#30)

* feat(packages): add Lutris

* feat(packages): add lutris override packages

authored by

WalkQuackBack and committed by
GitHub
90edf03c 1f4699d4

+15 -1
+3 -1
modules/packages.nix
··· 1 1 { config, pkgs, ... }: { 2 - imports = []; 2 + imports = [ 3 + ./packages/lutris.nix 4 + ]; 3 5 environment.systemPackages = with pkgs; [ 4 6 google-chrome 5 7 ungoogled-chromium
+12
modules/packages/lutris.nix
··· 1 + { config, pkgs, ... }: { 2 + environment.systemPackages = with pkgs; [ 3 + (lutris.override { 4 + extraPkgs = pkgs: [ 5 + wineWowPackages.waylandFull 6 + winetricks 7 + vulkan-tools 8 + xterm 9 + ]; 10 + }) 11 + ]; 12 + }