Re-format with nixpkgs-fmt
1 file changed, 6 insertions(+), 7 deletions(-)
changed files
M system/settings/services/zeroconf.nix → system/settings/services/zeroconf.nix
@@ -1,8 +1,7 @@ -{ - config, - pkgs, - lib, - ... +{ config +, pkgs +, lib +, ... }: { services.avahi = { enable = true;@@ -16,10 +15,10 @@ userServices = true; workstation = true; }; }; - systemd.services.avahi-daemon.wantedBy = lib.mkForce []; + systemd.services.avahi-daemon.wantedBy = lib.mkForce [ ]; systemd.timers.avahi-daemon = { description = "Delayed startup of Avahi"; - wantedBy = ["timers.target"]; + wantedBy = [ "timers.target" ]; timerConfig = { OnActiveSec = "1 min"; };