diff options
author | lassulus <lass@aidsballs.de> | 2015-04-10 01:37:29 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:17:19 +0200 |
commit | aa5d113f90c29f483aa679738dc52e5df1763fec (patch) | |
tree | 9be801304c8331bc211ad738836b3f3a03e74cea /modules/lass/steam.nix | |
parent | 6593d16308109ded64d5c842d6a12c4106767df4 (diff) |
mors: import mors + config
Diffstat (limited to 'modules/lass/steam.nix')
-rw-r--r-- | modules/lass/steam.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/lass/steam.nix b/modules/lass/steam.nix new file mode 100644 index 000000000..d54873b1f --- /dev/null +++ b/modules/lass/steam.nix @@ -0,0 +1,29 @@ +{ config, pkgs, ... }: + +{ + + imports = [ + ./games.nix + ]; + # + # Steam stuff + # source: https://nixos.org/wiki/Talk:Steam + # + ##TODO: make steam module + hardware.opengl.driSupport32Bit = true; + + environment.systemPackages = with pkgs; [ + steam + ]; + networking.firewall = { + allowedUDPPorts = [ + 27031 + 27036 + ]; + allowedTCPPorts = [ + 27036 + 27037 + ]; + }; + +} |