This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/modules/tailscale/exit-node.nix
T
beatzaplenty 28ae709100
Check NixOS configurations / eval-hosts (push) Failing after 22m19s
updated module directory structure
2026-07-13 00:56:19 +10:00

13 lines
164 B
Nix

{ ... }:
{
services.tailscale = {
enable = true;
extraUpFlags = [
"--advertise-exit-node"
"--advertise-routes=192.168.2.0/24"
];
};
}