summary refs log tree commit diff stats
path: root/system/modules/services/zeroconf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/modules/services/zeroconf.nix')
-rw-r--r--system/modules/services/zeroconf.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/system/modules/services/zeroconf.nix b/system/modules/services/zeroconf.nix
deleted file mode 100644
index 0b428c54..00000000
--- a/system/modules/services/zeroconf.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{ services.avahi = {
-    enable = true;
-    nssmdns = true;
-    ipv6 = true;
-  };
-  systemd.services.avahi-daemon.wantedBy = lib.mkForce [];
-  systemd.timers.avahi-daemon = {
-    description = "Delayed startup of Avahi";
-    wantedBy = [ "timers.target" ];
-    timerConfig = {
-      OnActiveSec = "1 min";
-    };
-  };
-}