diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-27 12:27:23 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-27 12:43:03 +0100 |
commit | ec7955516c78c0a02388c17384c1fcfbb032fbfb (patch) | |
tree | 6b2634cb7f79372053e74bf129f497885d2b4e25 | |
parent | 4871fd51d3a32fe6a4ce6c5051bc90e72faca70a (diff) |
fix: remove ignored tailscale.extraUpFlags
It only takes effect if authKeyFile is specified.
-rw-r--r-- | nixos/parts/tailscale.nix | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/nixos/parts/tailscale.nix b/nixos/parts/tailscale.nix index 1cb6dcf..5d5a99c 100644 --- a/nixos/parts/tailscale.nix +++ b/nixos/parts/tailscale.nix @@ -1,15 +1,8 @@ -let - domains = import ../domains.nix; -in { config, pkgs, ... }: { services.tailscale = { enable = true; - extraUpFlags = [ - "--login-server=https://${domains.tailscaleControlServer}/" - ]; - # Only needed during activation. - # authKeyFile = "/tmp/key-file"; + # MANUAL: run tailscale up --login-server https://<tailscaleControlServer>/ }; } |