prevent tailscale from disconnecting on change of wifi networks
This commit is contained in:
parent
8286496b2a
commit
002e2d3e66
1 changed files with 6 additions and 1 deletions
|
|
@ -8,7 +8,12 @@ let
|
|||
in
|
||||
{
|
||||
config = lib.mkIf config.${feature}.enable {
|
||||
services.tailscale.enable = true;
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
extraSetFlags = [
|
||||
"--accept-dns=false"
|
||||
];
|
||||
};
|
||||
|
||||
networking.firewall.trustedInterfaces = [ "tailscale0" ];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue