mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
24 lines
436 B
Nix
24 lines
436 B
Nix
_: {
|
|
imports = [
|
|
];
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
ci.allowFailure = true;
|
|
access.online.enable = false;
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
network.networks = {
|
|
tail = {
|
|
address4 = "100.78.97.73";
|
|
address6 = "fd7a:115c:a1e0::d834:6149";
|
|
};
|
|
};
|
|
exports = {
|
|
services = {
|
|
promtail.enable = false;
|
|
prometheus-exporters-node.enable = false;
|
|
tailscale.enable = true;
|
|
};
|
|
};
|
|
}
|