stockholm/lass/2configs/steam.nix

29 lines
631 B
Nix
Raw Normal View History

2015-07-16 13:51:01 +00:00
{ config, pkgs, ... }:
{
imports = [
./games.nix
];
#
# Steam stuff
# source: https://nixos.org/wiki/Talk:Steam
#
##TODO: make steam module
2015-07-17 08:33:11 +00:00
nixpkgs.config.steam.java = true;
2019-10-14 13:39:42 +00:00
users.users.games.packages = [ pkgs.steam ];
2015-10-01 20:13:40 +00:00
#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"; }
];
};
2015-07-16 13:51:01 +00:00
};
}