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 2, 2024
1 parent 8ee13c3 commit 2918b64
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 @@ -58,6 +58,8 @@
add `vimPlugins.notmuch-vim` to your (Neo)vim configuration if you want the
vim plugin.

- `services.avahi.ipv6` now defaults to true.

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

## Other Notable Changes {#sec-release-25.05-notable-changes}
Expand Down
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 2918b64

Please sign in to comment.