blob: e3635fd1c910199f9c434305eb4c257a8883c9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, ... }: {
services.tailscale = {
enable = true;
extraUpFlags = [
"--login-server https://bosco.myrmexia.xyz"
"--operator defin"
];
};
systemd.services.tailscaled.after = [ "systemd-networkd-wait-online.service" ];
networking.firewall = {
checkReversePath = "loose";
trustedInterfaces = [ "tailscale0" ];
allowedUDPPorts = [ config.services.tailscale.port ];
};
}
|