From 6f0c6b9c3185ca28d47416c6b47fde881f530260 Mon Sep 17 00:00:00 2001 From: OlivierChiasson Date: Sun, 12 Jul 2026 21:03:54 -0300 Subject: [PATCH] Remove Tailscale configuration from t2mbp setup - Deleted the Tailscale auth key configuration and related networking settings from `configuration.nix` to streamline the host setup. - Maintained other networking configurations for continued functionality. --- modules/hosts/t2mbp/configuration.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/hosts/t2mbp/configuration.nix b/modules/hosts/t2mbp/configuration.nix index 20b7bc6..e18567a 100644 --- a/modules/hosts/t2mbp/configuration.nix +++ b/modules/hosts/t2mbp/configuration.nix @@ -19,10 +19,6 @@ ./_private/firmware.nix ]; - sops.secrets."tailscale/auth-key" = { - mode = "0400"; - }; - chiasson.system.librepods.enable = true; chiasson.system.palera1n.enable = true; @@ -76,11 +72,6 @@ networking = { hostName = "t2mbp"; networkManager.enable = true; - tailscale = { - enable = true; - authKeyFile = config.sops.secrets."tailscale/auth-key".path; - acceptRoutes = true; - }; }; };