aboutsummaryrefslogtreecommitdiffstats
path: root/modules/vhack/ns/nscd
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-30 14:05:39 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-30 14:05:39 +0200
commitc153a351659e4596acfc31f00bf594343cbfcd68 (patch)
treea9ed83de07711d6424fbea09aad28891bae5bfe4 /modules/vhack/ns/nscd
parenthosts/server3: Setup prometheus server in agent mode (diff)
downloadnixos-server-c153a351659e4596acfc31f00bf594343cbfcd68.zip
modules: Use namespaces
That might make it easier in the future to merge different server configs together (and thusly facilitate code-reuse.).
Diffstat (limited to 'modules/vhack/ns/nscd')
-rw-r--r--modules/vhack/ns/nscd/module.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/vhack/ns/nscd/module.nix b/modules/vhack/ns/nscd/module.nix
new file mode 100644
index 0000000..428ae3b
--- /dev/null
+++ b/modules/vhack/ns/nscd/module.nix
@@ -0,0 +1,25 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.vhack.nscd;
+in {
+ options.vhack.nscd = {
+ # NOTE(@bpeetz): This is enabled by default in NixOS.
+ # Because of this reason:
+ # > Whether to enable the Name Service Cache Daemon. Disabling this is
+ # > strongly discouraged, as this effectively disables NSS Lookups from
+ # > all non-glibc NSS modules, including the ones provided by systemd.
+ #
+ # As such we should also always enable it. <2024-12-25>
+ enable = (lib.mkEnableOption "nscd") // {default = true;};
+ };
+
+ config = lib.mkIf cfg.enable {
+ users = {
+ users.nscd.uid = config.vhack.constants.ids.uids.nscd;
+ groups.nscd.gid = config.vhack.constants.ids.gids.nscd;
+ };
+ };
+}