hosts: remove kaze hosts: update networking nushell: update aliases profiles: remove kaze grafana: remove kaze
27 lines
486 B
Nix
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
|
|
'';
|
|
};
|
|
}
|