From c3e295b56eba690fc5422b74a74ffca6d9f98ac5 Mon Sep 17 00:00:00 2001 From: lassulus Date: Thu, 16 Jul 2015 15:51:01 +0200 Subject: 2 lass: re-add all configs --- 2configs/lass/steam.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 2configs/lass/steam.nix (limited to '2configs/lass/steam.nix') diff --git a/2configs/lass/steam.nix b/2configs/lass/steam.nix new file mode 100644 index 000000000..d54873b1f --- /dev/null +++ b/2configs/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 + ]; + }; + +} -- cgit v1.2.3