Files
infrastructure/machines/hosts.nix
kalipso cb5e68ef16
Some checks failed
Check flake syntax / flake-check (push) Failing after 3m49s
[dns] init
2026-01-26 14:05:12 +01:00

112 lines
2.0 KiB
Nix

{ ... }:
{
#TODO: fix local 192.168.1.0/24 addresses they are just palceholders!
malobeo = {
hosts = {
louise = {
type = "host";
network = {
local = true;
address = "192.168.1.11";
};
};
bakunin = {
type = "host";
network = {
local = true;
address = "192.168.1.12";
};
};
fanny = {
type = "host";
network = {
local = true;
address = "192.168.1.13";
};
};
ns1 = {
type = "host";
network = {
local = true;
address = "192.168.1.14";
};
};
lucia = {
type = "rpi";
network = {
local = true;
address = "192.168.1.15";
};
};
durruti = {
type = "microvm";
network = {
local = true;
address = "10.0.0.5";
mac = "52:DA:0D:F9:EF:F9";
};
};
vpn = {
type = "microvm";
network = {
local = true;
address = "10.0.0.10";
mac = "D0:E5:CA:F0:D7:E6";
};
};
infradocs = {
type = "microvm";
network = {
local = true;
address = "10.0.0.11";
mac = "D0:E5:CA:F0:D7:E7";
};
};
uptimekuma = {
type = "microvm";
network = {
local = true;
address = "10.0.0.12";
mac = "D0:E5:CA:F0:D7:E8";
};
};
nextcloud = {
type = "microvm";
network = {
local = true;
address = "10.0.0.13";
mac = "D0:E5:CA:F0:D7:E9";
};
};
overwatch = {
type = "microvm";
network = {
local = true;
address = "10.0.0.14";
mac = "D0:E5:CA:F0:D7:E0";
};
};
zineshop = {
type = "microvm";
network = {
local = true;
address = "10.0.0.15";
mac = "D0:E5:CA:F0:D7:F1";
};
};
};
};
}