summary refs log tree commit diff stats
path: root/modules/programs/steam.nix
diff options
context:
space:
mode:
authorAlan Pearce2019-09-28 20:30:27 +0200
committerAlan Pearce2019-09-28 22:16:43 +0200
commit821cad4aa7d3241e618b2114ae3a91dc1372976b (patch)
tree5c69121a0b903d9a2144a7260cb2ec2c95c03018 /modules/programs/steam.nix
parent9c5c1ef38e0e43b865384d3130b680551e93b54c (diff)
downloadnixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.tar.lz
nixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.tar.zst
nixos-configuration-821cad4aa7d3241e618b2114ae3a91dc1372976b.zip
Expand steam configuration into generic gaming setup
Diffstat (limited to 'modules/programs/steam.nix')
-rw-r--r--modules/programs/steam.nix19
1 files changed, 0 insertions, 19 deletions
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
-    ];
-  };
-}