diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-25 18:23:05 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-25 18:23:05 +0100 |
commit | 35071eeb107c982925fda3fcef6bbd44940cbb21 (patch) | |
tree | 6aee2a170ff0ffb24b4cad9c3f03f3064bb7d925 /modules/by-name/co/coredump/module.nix | |
parent | docs(CONTRIBUTING.md): Remove (diff) | |
download | nixos-server-35071eeb107c982925fda3fcef6bbd44940cbb21.tar.gz nixos-server-35071eeb107c982925fda3fcef6bbd44940cbb21.zip |
fix(treewide): Add constant uids and gids to each user and group
This allows us to avoid persisting `/var/lib/nixos`.
Diffstat (limited to 'modules/by-name/co/coredump/module.nix')
-rw-r--r-- | modules/by-name/co/coredump/module.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/by-name/co/coredump/module.nix b/modules/by-name/co/coredump/module.nix new file mode 100644 index 0000000..ce28ed9 --- /dev/null +++ b/modules/by-name/co/coredump/module.nix @@ -0,0 +1,18 @@ +{ + config, + lib, + ... +}: let + cfg = config.vhack.systemd.coredump; +in { + options.vhack.systemd.coredump = { + # 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 = { + groups.systemd-coredump.gid = config.vhack.constants.ids.gids.systemd-coredump; + }; + }; +} |