WS-KCNHUB/machines/kcnhub/services/earlyoom.nix

10 lines
243 B
Nix

{ config, pkgs, lib, ... }: {
services.earlyoom = {
enable = true;
# What % Memory Needs to Be left to send SIGTERM
freeMemThreshold = 10;
# What % Memory Needs to Be left to send SIGKILL
freeMemKillThreshold = 5;
};
}