summary refs log tree commit diff stats
path: root/user/modules
diff options
context:
space:
mode:
authorAlan Pearce2019-10-05 18:02:48 +0200
committerAlan Pearce2019-10-05 18:02:48 +0200
commita64e999255638c9a0ae5b7c104d80ac3201b1bc5 (patch)
tree455d5209cf9e20eac87aeb3925f8d230aabbb19c /user/modules
parent22f3225547ae0dce900a1cd39f5ccce29e9552ed (diff)
downloadnixfiles-a64e999255638c9a0ae5b7c104d80ac3201b1bc5.tar.lz
nixfiles-a64e999255638c9a0ae5b7c104d80ac3201b1bc5.tar.zst
nixfiles-a64e999255638c9a0ae5b7c104d80ac3201b1bc5.zip
Move gaming packages to user
Diffstat (limited to 'user/modules')
-rw-r--r--user/modules/gaming.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/user/modules/gaming.nix b/user/modules/gaming.nix
new file mode 100644
index 00000000..022846ca
--- /dev/null
+++ b/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
+  ];
+}