cjdns: fix assertion.

Changed files
+1 -1
nixos
modules
services
networking
+1 -1
nixos/modules/services/networking/cjdns.nix
···
networking.extraHosts = "${cjdnsHosts}";
assertions = [
-
{ assertion = ( cfg.ETHInterface.bind != "" || cfg.UDPInterface.bind != "" || cfg.confFile == "" );
+
{ assertion = ( cfg.ETHInterface.bind != "" || cfg.UDPInterface.bind != "" || cfg.confFile != "" );
message = "Neither cjdns.ETHInterface.bind nor cjdns.UDPInterface.bind defined.";
}
{ assertion = config.networking.enableIPv6;