diff options
| -rw-r--r-- | jeschli/1systems/brauerei/config.nix | 1 | ||||
| -rw-r--r-- | jeschli/2configs/steam.nix | 22 | 
2 files changed, 23 insertions, 0 deletions
| diff --git a/jeschli/1systems/brauerei/config.nix b/jeschli/1systems/brauerei/config.nix index e200cbc..4cd544a 100644 --- a/jeschli/1systems/brauerei/config.nix +++ b/jeschli/1systems/brauerei/config.nix @@ -8,6 +8,7 @@      <stockholm/jeschli/2configs/emacs.nix>      <stockholm/jeschli/2configs/xdg.nix>      <stockholm/jeschli/2configs/xserver> +    <stockholm/jeschli/2configs/steam.nix>      <stockholm/jeschli/2configs/virtualbox.nix>    ]; diff --git a/jeschli/2configs/steam.nix b/jeschli/2configs/steam.nix new file mode 100644 index 0000000..4d2d66c --- /dev/null +++ b/jeschli/2configs/steam.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }: + +{ + +  nixpkgs.config.steam.java = true; +  environment.systemPackages = with pkgs; [ +    steam +  ]; +  hardware.opengl.driSupport32Bit = true; + +  #ports for inhome streaming +  krebs.iptables = { +    tables = { +      filter.INPUT.rules = [ +        { predicate = "-p tcp --dport 27031"; target = "ACCEPT"; } +        { predicate = "-p tcp --dport 27036"; target = "ACCEPT"; } +        { predicate = "-p udp --dport 27031"; target = "ACCEPT"; } +        { predicate = "-p udp --dport 27036"; target = "ACCEPT"; } +      ]; +    }; +  }; +} | 
