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:
parent
3216b85713
commit
0b8a6e787c
|
@ -86,7 +86,8 @@ in
|
||||||
|
|
||||||
ipv6 = mkOption {
|
ipv6 = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = config.networking.enableIPv6;
|
||||||
|
defaultText = "config.networking.enableIPv6";
|
||||||
description = "Whether to use IPv6.";
|
description = "Whether to use IPv6.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue