feat: reserve internal ip for adguardhome

This commit is contained in:
oddlama 2024-01-05 17:36:27 +01:00
parent 4c4536268a
commit 130dc59c37
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -1,6 +1,7 @@
{
lib,
utils,
nodes,
...
}: let
inherit (lib) net;
@ -44,12 +45,12 @@ in {
data = net.cidr.host 1 lanCidrv4;
}
];
# TODO reservations = [
# TODO {
# TODO hw-address = nodes.ward-adguardhome.config.lib.microvm.mac;
# TODO ip-address = dnsIp;
# TODO }
# TODO ];
reservations = [
{
hw-address = nodes.ward-adguardhome.config.lib.microvm.mac;
ip-address = dnsIp;
}
];
}
];
};