nixos/avahi: Fix incorrect defaultText of services.avahi.ipv6

This seems to have been forgotten in bba808dbfa, where we changed the default from `config.networking.enableIPv6` to `false`.
This commit is contained in:
Thomas BESSOU 2024-01-03 15:05:15 +01:00
parent b0d36bd0a4
commit a85739af7e

View file

@ -95,7 +95,6 @@ in
ipv6 = mkOption {
type = types.bool;
default = false;
defaultText = literalExpression "config.networking.enableIPv6";
description = lib.mdDoc "Whether to use IPv6.";
};