mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
26 lines
438 B
Nix
26 lines
438 B
Nix
_: {
|
|
arch = "aarch64";
|
|
type = "NixOS";
|
|
ci.enable = false;
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
deploy = {
|
|
hostname = "10.1.1.50";
|
|
};
|
|
network.networks = {
|
|
tail = {
|
|
address4 = "100.106.9.75";
|
|
address6 = "fd7a:115c:a1e0::f501:94b";
|
|
};
|
|
local = {
|
|
macAddress = "02:ba:46:f8:40:52";
|
|
address4 = "10.1.1.50";
|
|
};
|
|
};
|
|
exports = {
|
|
services = {
|
|
tailscale.enable = true;
|
|
};
|
|
};
|
|
}
|