infrastructure/systems/u7pro/default.nix
2024-04-16 14:05:04 -07:00

18 lines
283 B
Nix

_: {
type = "Linux";
access.hostName = "u7-pro";
network.networks = {
local = {
address4 = "10.1.1.3";
address6 = null;
};
};
exports = {
services = {
sshd = {
enable = true;
ports.public.enable = false;
};
};
};
}