From a3542e6a6c150b417737b3538414a2e05e567604 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 28 Oct 2025 11:52:49 +0900 Subject: [PATCH] common: use nsncd instead of nscd --- hosts/common/default.nix | 1 + hosts/common/services/nscd.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 hosts/common/services/nscd.nix diff --git a/hosts/common/default.nix b/hosts/common/default.nix index ed91992..a074152 100644 --- a/hosts/common/default.nix +++ b/hosts/common/default.nix @@ -26,6 +26,7 @@ in { ./services/locate.nix ./services/logind.nix ./services/nixseparatedebuginfod.nix + ./services/nscd.nix ./services/openssh.nix ./services/pcscd.nix ./services/pipewire.nix diff --git a/hosts/common/services/nscd.nix b/hosts/common/services/nscd.nix new file mode 100644 index 0000000..24dafd6 --- /dev/null +++ b/hosts/common/services/nscd.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + services.nscd.enableNsncd = true; +}