mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
22 lines
359 B
Nix
22 lines
359 B
Nix
_: {
|
|
type = "Linux";
|
|
network.networks = {
|
|
local = {
|
|
address4 = "10.1.1.40";
|
|
address6 = null;
|
|
};
|
|
int = {
|
|
address4 = "10.9.1.2";
|
|
address6 = "fd0c::2";
|
|
};
|
|
};
|
|
exports = {
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
ports.public.enable = false;
|
|
};
|
|
proxmox.enable = true;
|
|
};
|
|
};
|
|
}
|