From f48b81ecea963b135d7f6ec223ec0a960d24cf13 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 29 Jul 2025 13:19:07 +0100 Subject: [PATCH] Move tailscale configuration --- hosts/nixedo/services/default.nix | 1 - hosts/t480/configuration.nix | 2 -- modules2/tailscale.nix | 3 +++ 3 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 modules2/tailscale.nix diff --git a/hosts/nixedo/services/default.nix b/hosts/nixedo/services/default.nix index 57d5e162..b5a19f88 100644 --- a/hosts/nixedo/services/default.nix +++ b/hosts/nixedo/services/default.nix @@ -17,7 +17,6 @@ services = { postgresqlBackup.enable = true; - tailscale.enable = true; }; services.gitea-actions-runner.instances.default = { diff --git a/hosts/t480/configuration.nix b/hosts/t480/configuration.nix index 6fcb1142..60c191f2 100644 --- a/hosts/t480/configuration.nix +++ b/hosts/t480/configuration.nix @@ -25,7 +25,6 @@ power-profiles-daemon.enable = false; printing.enable = true; pulseaudio.enable = false; - tailscale.enable = true; thermald.enable = true; throttled.enable = true; upower.enable = true; @@ -91,7 +90,6 @@ shotwell stable.gscan2pdf sxiv - tailscale ttyper xcape xsel diff --git a/modules2/tailscale.nix b/modules2/tailscale.nix new file mode 100644 index 00000000..25af676a --- /dev/null +++ b/modules2/tailscale.nix @@ -0,0 +1,3 @@ +{ + flake.modules.nixos.workstation.services.tailscale.enable = true; +}