chore: rename nixos to linux

This commit is contained in:
Youwen Wu 2024-08-24 03:52:45 -07:00
parent 26aa04552c
commit cbcb9467d6
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
11 changed files with 18 additions and 20 deletions

View file

@ -1,19 +0,0 @@
let
universalAllowedPorts = [27016 42805];
universalAllowedRanges = [
{
from = 42852;
to = 42872;
}
];
in {
services.openssh.enable = true;
networking.firewall = {
allowedTCPPorts = universalAllowedPorts;
allowedUDPPorts = universalAllowedPorts;
allowedUDPPortRanges = universalAllowedRanges;
allowedTCPPortRanges = universalAllowedRanges;
};
networking.firewall.enable = true;
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
}