From 9ffbe2ba405d32f0c294a707ddfc8d471118b0bb Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sat, 30 Nov 2024 22:14:42 +0100 Subject: [PATCH] dregil: Enable tailscale --- hosts/dregil/default.nix | 1 + modules/tailscale/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/tailscale/default.nix diff --git a/hosts/dregil/default.nix b/hosts/dregil/default.nix index 6e5609b..c4852b4 100644 --- a/hosts/dregil/default.nix +++ b/hosts/dregil/default.nix @@ -22,5 +22,6 @@ ../../home/anne/default.nix ../../home/alex/default.nix ../../modules/podman + ../../modules/tailscale ]; } diff --git a/modules/tailscale/default.nix b/modules/tailscale/default.nix new file mode 100644 index 0000000..65a035c --- /dev/null +++ b/modules/tailscale/default.nix @@ -0,0 +1,7 @@ +{ + ... +}: + +{ + config.services.tailscale.enable = true; +}