Don't use camelCase for opts

This commit is contained in:
niten 2023-12-05 22:38:01 -08:00
parent 26b130ceab
commit 3b89330f81

View File

@ -179,9 +179,9 @@ in {
cfg.zone-definition.hosts; cfg.zone-definition.hosts;
in mapAttrsToList (hostname: in mapAttrsToList (hostname:
{ mac-address, ipv4-address, ... }: { { mac-address, ipv4-address, ... }: {
ethernetAddress = mac-address; hw-address = mac-address;
hostName = hostname; # hostName = hostname;
ipAddress = ipv4-address; ip-address = ipv4-address;
}) hostsWithMac; }) hostsWithMac;
}]; }];
}; };