summary refs log tree commit diff stats
path: root/modules/programs/steam.nix
diff options
context:
space:
mode:
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 00236788..00000000
--- 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
-    ];
-  };
-}