We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a146b20 + 07e283f commit be4a655Copy full SHA for be4a655
nixos/doc/manual/release-notes/rl-2505.section.md
@@ -95,6 +95,8 @@
95
96
- Cinnamon has been updated to 6.4.
97
98
+- `services.avahi.ipv6` now defaults to true.
99
+
100
- `bind.cacheNetworks` now only controls access for recursive queries, where it previously controlled access for all queries.
101
102
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
nixos/modules/services/networking/avahi-daemon.nix
@@ -91,7 +91,7 @@ in
91
92
ipv6 = lib.mkOption {
93
type = lib.types.bool;
94
- default = false;
+ default = true;
description = "Whether to use IPv6.";
};
0 commit comments