nixos/shill: Use MemoryMax instead of MemoryMin
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 17m4s

This commit is contained in:
Jack O'Sullivan 2024-07-07 11:56:01 +01:00
parent 4e207c3397
commit 3535d2fd90

View File

@ -64,8 +64,8 @@ in
serviceConfig = { serviceConfig = {
CPUQuota = "400%"; CPUQuota = "400%";
MemoryHigh = "4G"; MemoryHigh = "infinity";
MemoryMax = "4.5G"; MemoryMax = "4G";
}; };
wantedBy = [ "machines.target" ]; wantedBy = [ "machines.target" ];