From 2337629578cd13382f2a12f85b75f974f43cc43e Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Tue, 17 Mar 2026 00:13:07 +0100 Subject: [PATCH] nixos/tailscale: Add tailscale module --- modules/services/tailscale.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/services/tailscale.nix diff --git a/modules/services/tailscale.nix b/modules/services/tailscale.nix new file mode 100644 index 0000000..798922f --- /dev/null +++ b/modules/services/tailscale.nix @@ -0,0 +1,7 @@ +{ + flake.modules.nixos.tailscale = { + services.tailscale = { + enable = true; + }; + }; +}