mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
29 lines
539 B
Nix
29 lines
539 B
Nix
_: {
|
|
arch = "aarch64";
|
|
type = "NixOS";
|
|
ci.enable = false;
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
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;
|
|
motion = {
|
|
enable = true;
|
|
id = "printercam";
|
|
displayName = "Motion/printer";
|
|
};
|
|
moonraker.enable = true;
|
|
};
|
|
};
|
|
}
|