System/nixos/modules/tailscale.nix
2025-04-02 04:08:52 -04:00

11 lines
147 B
Nix

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