blob: 3b392366445b905eb472de2bace8cd6c4540916b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
config,
lib,
...
}: let
cfg = config.vhack.systemd.oomd;
in {
options.vhack.systemd.oomd = {
# NOTE(@bpeetz): Enabled by default, because that is what NixOS also does. <2024-12-25>
enable = (lib.mkEnableOption "oomd") // {default = true;};
};
config = lib.mkIf cfg.enable {
users = {
users.systemd-oom.uid = config.vhack.constants.ids.uids.systemd-oom;
groups.systemd-oom.gid = config.vhack.constants.ids.gids.systemd-oom;
};
};
}
|