aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/oo
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/oo')
-rw-r--r--modules/by-name/oo/oomd/module.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/by-name/oo/oomd/module.nix b/modules/by-name/oo/oomd/module.nix
deleted file mode 100644
index 3b39236..0000000
--- a/modules/by-name/oo/oomd/module.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- 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;
- };
- };
-}