Files
nixos-config/profiles/remote-desktop.nix

22 lines
270 B
Nix

{...}: {
services.sunshine = {
enable = true;
openFirewall = false;
capSysAdmin = true;
};
networking.firewall.interfaces.tailscale0 = {
allowedTCPPorts = [
47984
47989
47990
];
allowedUDPPorts = [
47998
47999
48000
48002
];
};
}