14 lines
281 B
Nix
14 lines
281 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
authKeyFile = config.sops.secrets."tailscale/preauthkeys/poseidon".path;
|
|
extraUpFlags =
|
|
[ "--login-server=https://headscale.polsevev.dev" "--accept-dns=false" ];
|
|
};
|
|
|
|
}
|
|
|