nixos/avahi: Enable IPv6 by default

Treat it the same as IPv4 (I'm tempted to disable IPv4 by default);
this is the only option I still need to set manually to enjoy IPv6-only
networks including printer discovery!
wip/yesman
Klemens Nanni 4 years ago committed by Andreas Rammhold
parent 3216b85713
commit 0b8a6e787c
No known key found for this signature in database
GPG Key ID: E432E410B5E48C86
  1. 3
      nixos/modules/services/networking/avahi-daemon.nix

@ -86,7 +86,8 @@ in
ipv6 = mkOption {
type = types.bool;
default = false;
default = config.networking.enableIPv6;
defaultText = "config.networking.enableIPv6";
description = "Whether to use IPv6.";
};

Loading…
Cancel
Save