From f4b09a5074ee8ab8bfa70fe939de8cf8ce258ba0 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Wed, 4 Jun 2025 12:19:40 +0530 Subject: [PATCH] fix: remove memory hungry nsncd --- hosts/default/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 0b438ed..85baa55 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -41,7 +41,10 @@ }; services.fwupd.enable = true; - security.pam.services.systemd-run0 = { }; + + # fuck this shit chock full of memory leaks + services.nscd.enableNsncd = false; + services.nscd.enable = false; # Set your time zone. time.timeZone = "Asia/Kolkata";