diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-01 15:59:22 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-11 08:37:52 +0100 |
commit | f5af22a8d108c9008b1a2b6c99e65ff910518288 (patch) | |
tree | 913e2a4bef85915c74270c5feb2ddcc7eaf8a05b | |
parent | e92436da03d835766e50b8b64a166d6948ab1584 (diff) |
add tailscale
-rw-r--r-- | nixos/hamac-configuration.nix | 1 | ||||
-rw-r--r-- | nixos/parts/tailscale.nix | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/nixos/hamac-configuration.nix b/nixos/hamac-configuration.nix index 2d03e4c..af97111 100644 --- a/nixos/hamac-configuration.nix +++ b/nixos/hamac-configuration.nix @@ -9,6 +9,7 @@ ./sanix.nix ./parts/basics.nix ./parts/graphical.nix + ./parts/tailscale.nix ]; # Bootloader. diff --git a/nixos/parts/tailscale.nix b/nixos/parts/tailscale.nix new file mode 100644 index 0000000..bce1564 --- /dev/null +++ b/nixos/parts/tailscale.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ + services.tailscale = { + enable = true; + extraUpFlags = [ + "--login-server=https://headscale.push-f.com/" + ]; + # Only needed during activation. + # authKeyFile = "/tmp/key-file"; + }; +} |