mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
29 lines
502 B
Nix
29 lines
502 B
Nix
_: {
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
ci.allowFailure = true;
|
|
access.online.enable = false;
|
|
proxmox = {
|
|
vm = {
|
|
id = 201;
|
|
enable = true;
|
|
};
|
|
network.interfaces = {
|
|
net0 = {
|
|
mdns.enable = false;
|
|
name = "ens18";
|
|
macAddress = "BC:24:11:49:FE:DC";
|
|
address4 = "10.1.1.42/24";
|
|
address6 = "auto";
|
|
};
|
|
};
|
|
};
|
|
exports = {
|
|
services = {
|
|
cloudflared.enable = true;
|
|
};
|
|
};
|
|
}
|