snowflake/hosts/tsuki/networking.nix
notohh c65ae2f7a6
hosts: remove kaze
hosts: remove kaze

hosts: update networking

nushell: update aliases

profiles: remove kaze

grafana: remove kaze
2025-02-21 22:06:57 -05:00

27 lines
486 B
Nix

_: {
networking = {
networkmanager.enable = true;
hostName = "tsuki";
firewall = {
enable = true;
allowedTCPPorts = [
7000 # uxplay
7100 # uxplay
7001 # uxplay
5173
];
allowedUDPPorts = [
7011 # uxplay
6001 # uxplay
6000 # uxplay
];
};
};
environment.etc = {
"resolv.conf".text = ''
nameserver 192.168.1.103
nameserver 1.1.1.1
options edns0
'';
};
}