From 485694c33fcea174aa4bf5b9457648b73e257faa Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Mon, 5 Jan 2026 22:57:05 -0600 Subject: [PATCH] Enable Tailscale service and add tailscale package and tun module --- flakes/common/nix_modules/tailnet.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flakes/common/nix_modules/tailnet.nix b/flakes/common/nix_modules/tailnet.nix index bc746dad..9351576b 100644 --- a/flakes/common/nix_modules/tailnet.nix +++ b/flakes/common/nix_modules/tailnet.nix @@ -6,6 +6,8 @@ }: { environment.systemPackages = with pkgs; [ tailscale ]; + boot.kernelModules = [ "tun" ]; + services.tailscale = { enable = true; openFirewall = true;