snowflake/hosts/tsuki/networking.nix
notohh ff9007e984
tsuki: init ananicy, update hyprland portal package && open port
tsuki: switch to discord canary

vesktop screenshare borked

hyprland: open discord canary on start
2025-02-07 23:17:24 -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 9.9.9.9
options edns0
'';
};
}