4 Commits

Author SHA1 Message Date
Tom Alexander
aa5f34c54b Update packages. 2026-08-11 19:31:24 -04:00
Tom Alexander
1845b1ac30 Increase thresholds for automatic garbage collection. 2026-08-10 22:38:26 -04:00
Tom Alexander
4a772b7276 Disable ca-derivations for the kubernetes cluster also. 2026-08-10 18:30:58 -04:00
Tom Alexander
0e231428df Disable ca-derivations.
Seeing if this is what is causing all my issues with files/directories in the nix store going missing.
2026-08-10 15:27:18 -04:00
2 changed files with 4 additions and 4 deletions

View File

@@ -118,14 +118,14 @@ in
nix.settings.experimental-features = [ nix.settings.experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
"ca-derivations" # "ca-derivations"
# "blake3-hashes" # "blake3-hashes"
# "git-hashing" # "git-hashing"
]; ];
nix.settings.trusted-users = [ "@wheel" ]; nix.settings.trusted-users = [ "@wheel" ];
nix.settings.connect-timeout = 5; nix.settings.connect-timeout = 5;
nix.settings.min-free = 128000000; nix.settings.min-free = 5 * 1024 * 1024 * 1024; # Kick off garbage collect if space for nix store is less than 5 GiB
nix.settings.max-free = 1000000000; nix.settings.max-free = 10 * 1024 * 1024 * 1024; # Run that garbage collect until at least 10 GiB are free.
nix.settings.fallback = true; nix.settings.fallback = true;
nix.settings.warn-dirty = false; nix.settings.warn-dirty = false;
nix.settings.fsync-metadata = true; nix.settings.fsync-metadata = true;

View File

@@ -41,7 +41,7 @@
nix.settings.experimental-features = [ nix.settings.experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
"ca-derivations" # "ca-derivations"
# "blake3-hashes" # "blake3-hashes"
# "git-hashing" # "git-hashing"
]; ];