From 35071eeb107c982925fda3fcef6bbd44940cbb21 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 25 Dec 2024 18:23:05 +0100 Subject: fix(treewide): Add constant uids and gids to each user and group This allows us to avoid persisting `/var/lib/nixos`. --- modules/by-name/oo/oomd/module.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/by-name/oo/oomd/module.nix (limited to 'modules/by-name/oo/oomd/module.nix') diff --git a/modules/by-name/oo/oomd/module.nix b/modules/by-name/oo/oomd/module.nix new file mode 100644 index 0000000..3b39236 --- /dev/null +++ b/modules/by-name/oo/oomd/module.nix @@ -0,0 +1,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; + }; + }; +} -- cgit 1.4.1