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!
This commit is contained in:
Klemens Nanni 2020-10-26 04:01:07 +01:00 committed by Andreas Rammhold
parent 3216b85713
commit 0b8a6e787c
No known key found for this signature in database
GPG key ID: E432E410B5E48C86

View file

@ -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.";
};