steam firewall openings, more defaulting, move some packages, cleanup

This commit is contained in:
notgne2 2021-10-05 10:28:08 -07:00
parent fdbb796a33
commit a23f6db0ef
No known key found for this signature in database
GPG key ID: BB661E172B42A7F8
5 changed files with 71 additions and 70 deletions

View file

@ -151,14 +151,22 @@ in
networking.networkmanager.wifi.macAddress = lib.mkDefault "random";
networking.networkmanager.wifi.scanRandMacAddress = lib.mkDefault true;
# Used for chromecast bullshit
networking.firewall.allowedUDPPortRanges = [
# Used for chromecast bullshit
{
from = 32768;
to = 60999;
}
# Steam remote play
{
from = 27031;
to = 27036;
}
];
# Steam remote play
networking.firewall.allowedTCPPorts = [ 27036 ];
# Used for upnp or something?
networking.firewall.allowedUDPPorts = [ 1900 ];
@ -168,11 +176,6 @@ in
# better default swap
boot.kernel.sysctl = { "vm.swappiness" = lib.mkDefault 45; };
# you probably want this system wide?
environment.systemPackages = with pkgs; [
exfat
];
# self explanatory
fuckingprint.enable = lib.mkDefault true;