Skip to content

Commit

Permalink
modules/avahi: Enable IPv6 by default
Browse files Browse the repository at this point in the history
Avahi's default for `use-ipv6` is yes as well. I see no reason why we
should do this differently.
  • Loading branch information
frederictobiasc committed Dec 4, 2024
1 parent 2a3d58a commit 07e283f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2505.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. -->
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/avahi-daemon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ in

ipv6 = lib.mkOption {
type = lib.types.bool;
default = false;
default = true;
description = "Whether to use IPv6.";
};

Expand Down

0 comments on commit 07e283f

Please sign in to comment.