diff options
Diffstat (limited to 'modules/programs')
-rw-r--r-- | modules/programs/steam.nix | 19 |
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 - ]; - }; -} |