summary refs log tree commit diff stats
path: root/modules/services
diff options
context:
space:
mode:
authorAlan Pearce2018-05-19 17:06:40 +0200
committerAlan Pearce2018-05-19 17:06:40 +0200
commite261ccaf3755d26f0af318e1b5775da0f7bee94f (patch)
tree96971b3fdb179456aa5b5194a01d270af1d1f401 /modules/services
parent106542e052137ba632402276e1621bc16a3ab907 (diff)
downloadnixos-configuration-e261ccaf3755d26f0af318e1b5775da0f7bee94f.tar.lz
nixos-configuration-e261ccaf3755d26f0af318e1b5775da0f7bee94f.tar.zst
nixos-configuration-e261ccaf3755d26f0af318e1b5775da0f7bee94f.zip
Enable zeroconf name resolution
Required nscd, which slows down the boot process, so make that a
delayed-start service
Diffstat (limited to 'modules/services')
-rw-r--r--modules/services/zeroconf.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/zeroconf.nix b/modules/services/zeroconf.nix
index 8eb01fb..0b428c5 100644
--- a/modules/services/zeroconf.nix
+++ b/modules/services/zeroconf.nix
@@ -2,7 +2,7 @@
 
 { services.avahi = {
     enable = true;
-    nssmdns = false;
+    nssmdns = true;
     ipv6 = true;
   };
   systemd.services.avahi-daemon.wantedBy = lib.mkForce [];