tailscale: refactor default.nix into separate file

This commit is contained in:
wo2wz 2025-10-27 16:29:09 -04:00
parent 9f1ea7f81e
commit 0748e1b111
2 changed files with 12 additions and 4 deletions

View file

@ -1,8 +1,8 @@
{ config, ... }: { config, ... }:
{ {
services.tailscale = { imports = [
enable = true; ./main.nix
extraDaemonFlags = [ "--no-logs-no-support" ]; ./ssh.nix
}; ];
} }

View file

@ -0,0 +1,8 @@
{ config, ... }:
{
services.tailscale = {
enable = true;
extraDaemonFlags = [ "--no-logs-no-support" ];
};
}