modules/avahi: Enable IPv6 by default

Avahi's default for `use-ipv6` is yes as well. I see no reason why we
should do this differently.
This commit is contained in:
Frédéric Christ
2024-12-04 11:06:49 +01:00
parent 2a3d58a2ad
commit 07e283f2b1
2 changed files with 3 additions and 1 deletions
@@ -77,6 +77,8 @@
- Cinnamon has been updated to 6.4.
- `services.avahi.ipv6` now defaults to true.
- `bind.cacheNetworks` now only controls access for recursive queries, where it previously controlled access for all queries.
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
@@ -91,7 +91,7 @@ in
ipv6 = lib.mkOption {
type = lib.types.bool;
default = false;
default = true;
description = "Whether to use IPv6.";
};