tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cjdns: fix assertion.
Carles Pagès
9 years ago
3374aa25
afb821fa
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
cjdns.nix
+1
-1
nixos/modules/services/networking/cjdns.nix
···
253
253
networking.extraHosts = "${cjdnsHosts}";
254
254
255
255
assertions = [
256
256
-
{ assertion = ( cfg.ETHInterface.bind != "" || cfg.UDPInterface.bind != "" || cfg.confFile == "" );
256
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;