mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
19 lines
364 B
Nix
19 lines
364 B
Nix
_: {
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
ci.enable = false;
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
access.online.enable = false;
|
|
network.networks = {
|
|
local = {
|
|
address4 = null;
|
|
address6 = "fd0a::eea8:6bff:fefe:3986";
|
|
};
|
|
tail = {
|
|
address4 = "100.88.107.41";
|
|
address6 = "fd7a:115c:a1e0:ab12:4843:cd96:6258:6b29";
|
|
};
|
|
};
|
|
}
|