infrastructure/systems/idrac-gengetsu/default.nix
2024-11-20 10:02:58 -08:00

20 lines
301 B
Nix

_: {
type = "Linux";
access = {
online.available = true;
};
network.networks = {
local = {
address4 = "10.1.1.12";
address6 = null;
};
};
exports = {
services = {
sshd = {
enable = true;
ports.public.enable = false;
};
};
};
}