10 lines
169 B
Nix
10 lines
169 B
Nix
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
extraSetFlags = [
|
|
"--accept-dns=true"
|
|
];
|
|
};
|
|
|
|
networking.firewall.trustedInterfaces = [ "tailscale0" ];
|
|
}
|