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.
This commit is contained in:
2026-07-12 21:03:54 -03:00
parent bab8bdecb7
commit 6f0c6b9c31
-9
View File
@@ -19,10 +19,6 @@
./_private/firmware.nix ./_private/firmware.nix
]; ];
sops.secrets."tailscale/auth-key" = {
mode = "0400";
};
chiasson.system.librepods.enable = true; chiasson.system.librepods.enable = true;
chiasson.system.palera1n.enable = true; chiasson.system.palera1n.enable = true;
@@ -76,11 +72,6 @@
networking = { networking = {
hostName = "t2mbp"; hostName = "t2mbp";
networkManager.enable = true; networkManager.enable = true;
tailscale = {
enable = true;
authKeyFile = config.sops.secrets."tailscale/auth-key".path;
acceptRoutes = true;
};
}; };
}; };