j brauerei: +steam
This commit is contained in:
parent
dbbf237393
commit
7f53d51c0a
@ -8,6 +8,7 @@
|
|||||||
<stockholm/jeschli/2configs/emacs.nix>
|
<stockholm/jeschli/2configs/emacs.nix>
|
||||||
<stockholm/jeschli/2configs/xdg.nix>
|
<stockholm/jeschli/2configs/xdg.nix>
|
||||||
<stockholm/jeschli/2configs/xserver>
|
<stockholm/jeschli/2configs/xserver>
|
||||||
|
<stockholm/jeschli/2configs/steam.nix>
|
||||||
<stockholm/jeschli/2configs/virtualbox.nix>
|
<stockholm/jeschli/2configs/virtualbox.nix>
|
||||||
];
|
];
|
||||||
|
|
||||||
|
22
jeschli/2configs/steam.nix
Normal file
22
jeschli/2configs/steam.nix
Normal file
@ -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"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user