fix: reclaim remote nix store space before rebuild
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 13s

This commit is contained in:
2026-02-28 21:24:16 +00:00
parent f6805f8a39
commit 327c07314c
2 changed files with 16 additions and 0 deletions

View File

@@ -60,6 +60,12 @@ in
};
nix.settings.trusted-users = [ "root" "micqdf" ];
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 3d";
};
nix.settings.auto-optimise-store = true;
environment.variables = {
KUBECONFIG = "/etc/kubernetes/admin.conf";