Merge pull request #42569 from spacefrogg/nscd-fix

resolvconf.conf: Remove forced NSCD service restart

authored by

Matthew Bauer and committed by
GitHub
2b4d7221 ce2f8bfd

-4
-4
nixos/modules/config/networking.nix
··· 231 231 # a collision with an apparently unrelated environment 232 232 # variable with the same name exported by dhcpcd. 233 233 interface_order='lo lo[0-9]*' 234 - '' + optionalString config.services.nscd.enable '' 235 - # Invalidate the nscd cache whenever resolv.conf is 236 - # regenerated. 237 - libc_restart='${pkgs.systemd}/bin/systemctl try-restart --no-block nscd.service 2> /dev/null' 238 234 '' + optionalString (length resolvconfOptions > 0) '' 239 235 # Options as described in resolv.conf(5) 240 236 resolv_conf_options='${concatStringsSep " " resolvconfOptions}'