diff options
author | Alan Pearce | 2019-09-28 20:30:27 +0200 |
---|---|---|
committer | Alan Pearce | 2019-09-28 22:16:43 +0200 |
commit | 821cad4aa7d3241e618b2114ae3a91dc1372976b (patch) | |
tree | 5c69121a0b903d9a2144a7260cb2ec2c95c03018 /modules/programs | |
parent | 9c5c1ef38e0e43b865384d3130b680551e93b54c (diff) | |
download | nixos-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')
-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 - ]; - }; -} |