modules/avahi: Enable IPv6 by default (#361016)

This commit is contained in:
Franz Pletz
2024-12-07 06:54:36 +01:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
@@ -95,6 +95,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.";
};