.files/nix/configurations/vanadium/nixos/sane-nix.nix
Léana 江 f471cfc438
vanadium/sane-nix: init
Setup memory && storage protection mechanisms
2026-01-01 21:42:55 +01:00

13 lines
299 B
Nix

# Protect my system from running out of storage or memory
{
nix.settings = {
min-free = 50 * 1024 * 1024 * 1024;
max-free = 100 * 1024 * 1024 * 1024;
};
systemd.services.nix-daemon.serviceConfig = {
MemoryAccounting = true;
MemoryMax = "90%";
OOMScoreAdjust = 500;
};
}