Don't use camelCase for opts

This commit is contained in:
niten 2023-12-05 22:38:01 -08:00
parent 26b130ceab
commit 3b89330f81
1 changed files with 3 additions and 3 deletions

View File

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