all repos — nixfiles @ a64e999255638c9a0ae5b7c104d80ac3201b1bc5

System and user configuration, managed by nix and home-manager

Move gaming packages to user

Alan Pearce
commit

a64e999255638c9a0ae5b7c104d80ac3201b1bc5

parent

22f3225547ae0dce900a1cd39f5ccce29e9552ed

1 file changed, 45 insertions(+), 0 deletions(-)

changed files
A user/modules/gaming.nix
@@ -0,0 +1,45 @@
+{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + unstable.steam + ( + unstable.winePackages.unstable.override { + pngSupport = true; + jpegSupport = true; + tiffSupport = true; + gettextSupport = true; + fontconfigSupport = true; + alsaSupport = true; + gtkSupport = true; + openglSupport = true; + tlsSupport = true; + gstreamerSupport = true; + cupsSupport = true; + colorManagementSupport = true; + dbusSupport = true; + mpg123Support = true; + openalSupport = true; + openclSupport = true; + cairoSupport = true; + odbcSupport = true; + netapiSupport = true; + cursesSupport = true; + vaSupport = true; + pcapSupport = true; + v4lSupport = true; + saneSupport = true; + gsmSupport = true; + gphoto2Support = true; + ldapSupport = true; + pulseaudioSupport = true; + udevSupport = true; + xineramaSupport = true; + xmlSupport = true; + vulkanSupport = true; + sdlSupport = true; + } + ) + unstable.lutris + ]; +}