21 lines
372 B
Nix
Raw Normal View History

2024-12-06 07:16:50 +01:00
{
config,
pkgs,
...
}: {
services.tailscale = {
enable = true;
2025-05-06 13:22:39 +02:00
authKeyFile = config.age.secrets.tailscale-key.path;
extraUpFlags = [
"--login-server=https://va.m3tam3re.com"
];
extraSetFlags = [
"--exit-node=m3-atlas"
"--exit-node-allow-lan-access"
];
2024-12-06 07:16:50 +01:00
};
2025-05-06 13:22:39 +02:00
environment.systemPackages = with pkgs; [
tailscale
];
2024-12-06 07:16:50 +01:00
}