Skip to content

Commit be4a655

Browse files
authored
modules/avahi: Enable IPv6 by default (#361016)
2 parents a146b20 + 07e283f commit be4a655

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

nixos/doc/manual/release-notes/rl-2505.section.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@
9595

9696
- Cinnamon has been updated to 6.4.
9797

98+
- `services.avahi.ipv6` now defaults to true.
99+
98100
- `bind.cacheNetworks` now only controls access for recursive queries, where it previously controlled access for all queries.
99101

100102
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

nixos/modules/services/networking/avahi-daemon.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ in
9191

9292
ipv6 = lib.mkOption {
9393
type = lib.types.bool;
94-
default = false;
94+
default = true;
9595
description = "Whether to use IPv6.";
9696
};
9797

0 commit comments

Comments
 (0)