blob: 9778c6a8a70a06e7d930f231b71dc5246d6a91b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, pkgs, ... }: {
services.tailscale = {
enable = true;
extraUpFlags = [
"--login-server https://bosco.myrmexia.xyz"
"--operator defin"
];
};
networking.firewall = {
checkReversePath = "loose";
trustedInterfaces = [ "taiolscale0" ];
allowedUDPPorts = [ config.services.tailscale.port ];
};
}
|