11 lines
187 B
Nix
11 lines
187 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.common-tailscale =
|
|
{ ... }:
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
extraUpFlags = [ "--operator=user" ];
|
|
};
|
|
};
|
|
}
|