cjdns: fix assertion.

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