summaryrefslogtreecommitdiff
path: root/nixos/parts/tailscale.nix
blob: bce156468d6b7706008f03fc57430f10983fd536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{
  services.tailscale = {
    enable = true;
    extraUpFlags = [
      "--login-server=https://headscale.push-f.com/"
    ];
    # Only needed during activation.
    # authKeyFile = "/tmp/key-file";
  };
}