summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2019-09-28 20:30:27 +0200
committerAlan Pearce2019-09-28 22:16:43 +0200
commit821cad4aa7d3241e618b2114ae3a91dc1372976b (patch)
tree5c69121a0b903d9a2144a7260cb2ec2c95c03018
parent9c5c1ef38e0e43b865384d3130b680551e93b54c (diff)
downloadnixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.tar.lz
nixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.tar.zst
nixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.zip
Expand steam configuration into generic gaming setup
-rw-r--r--modules/gaming.nix67
-rw-r--r--modules/programs/steam.nix19
2 files changed, 67 insertions, 19 deletions
diff --git a/modules/gaming.nix b/modules/gaming.nix
new file mode 100644
index 0000000..44b937a
--- /dev/null
+++ b/modules/gaming.nix
@@ -0,0 +1,67 @@
+{ config, pkgs, ... }:
+
+{ environment.systemPackages = 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
+  ];
+  hardware.steam-hardware.enable = true;
+  hardware.opengl.driSupport32Bit = true;
+  hardware.pulseaudio.support32Bit = true;
+
+  systemd = {
+    extraConfig = ''
+      DefaultLimitNOFILE=524288
+    '';
+    user.extraConfig = ''
+      DefaultLimitNOFILE=524288
+    '';
+  };
+
+  networking.firewall = {
+    allowedUDPPorts = [
+      27031
+      27036
+    ];
+    allowedTCPPorts = [
+      27036
+      27037
+    ];
+  };
+}
diff --git a/modules/programs/steam.nix b/modules/programs/steam.nix
deleted file mode 100644
index 0023678..0000000
--- a/modules/programs/steam.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, pkgs, ... }:
-
-{ environment.systemPackages = with pkgs; [
-    steam
-  ];
-  hardware.opengl.driSupport32Bit = true;
-  hardware.pulseaudio.support32Bit = true;
-
-  networking.firewall = {
-    allowedUDPPorts = [
-      27031
-      27036
-    ];
-    allowedTCPPorts = [
-      27036
-      27037
-    ];
-  };
-}