tsuki: switch to discord canary vesktop screenshare borked hyprland: open discord canary on start
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 9.9.9.9
|
|
options edns0
|
|
'';
|
|
};
|
|
}
|