11 lines
157 B
Nix
11 lines
157 B
Nix
{inputs}: {
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
};
|
|
networking.firewall.trustedInterfaces = ["tailscale0"];
|
|
}
|