Enable zeroconf name resolution Required nscd, which slows down the boot process, so make that a delayed-start service
1 file changed, 9 insertions(+), 1 deletion(-)
changed files
M modules/user-interface.nix → modules/user-interface.nix
@@ -56,7 +56,15 @@ services.devmon.enable = true; environment.sessionVariables.TERMINAL = "mlterm"; - services.nscd.enable = false; + services.nscd.enable = true; + systemd.services.nscd.wantedBy = lib.mkForce []; + systemd.timers.nscd = { + description = "Delayed startup of nscd"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnActiveSec = "1 min"; + }; + }; services.emacs = { enable = true;