mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
23 lines
387 B
Nix
23 lines
387 B
Nix
_: {
|
|
imports = [
|
|
];
|
|
# TODO: get an aarch64-linux builder on aya!
|
|
ci.enable = false;
|
|
arch = "aarch64";
|
|
type = "NixOS";
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
exports = {
|
|
services = {
|
|
nginx.enable = true;
|
|
openwebrx.enable = true;
|
|
};
|
|
};
|
|
network.networks = {
|
|
local = {
|
|
macAddress = "b8:27:eb:7e:e2:41";
|
|
address4 = "10.1.1.49";
|
|
};
|
|
};
|
|
}
|