System/nixos/modules/tailscale.nix
2025-04-02 04:07:21 -04:00

11 lines
157 B
Nix

{inputs}: {
config,
lib,
pkgs,
...
}: {
services.tailscale = {
enable = true;
};
networking.firewall.trustedInterfaces = ["tailscale0"];
}