1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: assign static ips to wallbox and home assistant

This commit is contained in:
oddlama 2024-07-14 14:12:46 +02:00
parent 292e066cb1
commit d6cf94d302
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 11 additions and 0 deletions

View file

@ -1,4 +1,5 @@
{
config,
lib,
globals,
utils,
@ -65,6 +66,14 @@ in {
hw-address = nodes.sire-samba.config.lib.microvm.mac;
ip-address = globals.net.home-lan.hosts.sire-samba.ipv4;
}
{
hw-address = config.repo.secrets.global.macs.wallbox;
ip-address = globals.net.home-lan.hosts.wallbox.ipv4;
}
{
hw-address = config.repo.secrets.global.macs.home-assistant;
ip-address = globals.net.home-lan.hosts.home-assistant-temp.ipv4;
}
];
}
];