From a85739af7e65554c487405bfaa842f2b145d0911 Mon Sep 17 00:00:00 2001 From: Thomas BESSOU Date: Wed, 3 Jan 2024 15:05:15 +0100 Subject: [PATCH] nixos/avahi: Fix incorrect defaultText of services.avahi.ipv6 This seems to have been forgotten in bba808dbfa89c8d974b248f4bf3c7716312dc704, where we changed the default from `config.networking.enableIPv6` to `false`. --- nixos/modules/services/networking/avahi-daemon.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix index 89b30996e8fa..08fc092e230c 100644 --- a/nixos/modules/services/networking/avahi-daemon.nix +++ b/nixos/modules/services/networking/avahi-daemon.nix @@ -95,7 +95,6 @@ in ipv6 = mkOption { type = types.bool; default = false; - defaultText = literalExpression "config.networking.enableIPv6"; description = lib.mdDoc "Whether to use IPv6."; };