systems: add fodwatch.forkos.org
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
b319b02f07
commit
25d5971340
11
flake.nix
11
flake.nix
|
@ -108,6 +108,17 @@
|
||||||
./hosts/cl.forkos.org
|
./hosts/cl.forkos.org
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fodwatch = {
|
||||||
|
imports = [
|
||||||
|
inputs.agenix.nixosModules.default
|
||||||
|
inputs.hydra.nixosModules.hydra
|
||||||
|
|
||||||
|
./services
|
||||||
|
./common
|
||||||
|
./hosts/fodwatch.forkos.org
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
33
hosts/fodwatch.forkos.org/default.nix
Executable file
33
hosts/fodwatch.forkos.org/default.nix
Executable file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
networking.hostName = "fodwatch";
|
||||||
|
networking.domain = "forkos.org";
|
||||||
|
|
||||||
|
time.timeZone = "Europe/Paris";
|
||||||
|
|
||||||
|
bagel.sysadmin.enable = true;
|
||||||
|
# Fodwatch will be proxied.
|
||||||
|
bagel.raito.v6-proxy-awareness.enable = true;
|
||||||
|
bagel.hardware.raito-vm = {
|
||||||
|
enable = true;
|
||||||
|
networking = {
|
||||||
|
nat-lan-mac = "BC:24:11:F2:17:F8";
|
||||||
|
wan = {
|
||||||
|
address = "2001:bc8:38ee:100:1000::30/64";
|
||||||
|
mac = "BC:24:11:69:74:D0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
bagel.meta.monitoring.address = "fodwatch.forkos.org";
|
||||||
|
|
||||||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
|
system.stateVersion = "24.05";
|
||||||
|
deployment.targetHost = "10.32.65.33";
|
||||||
|
}
|
Loading…
Reference in a new issue