From 9ae7cfc95e3e7a3bd17674e83417862326ca3a8f Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 10 Mar 2024 21:44:51 +0100 Subject: [PATCH] tailscale vpn --- tail.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tail.nix diff --git a/tail.nix b/tail.nix new file mode 100644 index 0000000..bc3dc2e --- /dev/null +++ b/tail.nix @@ -0,0 +1,7 @@ +{ config, ... }: +{ + services.tailscale = { + enable = true; + useRoutingFeatures = "both"; + }; +}