infrastructure/systems/logistics/default.nix
2025-09-06 23:05:37 -07:00

27 lines
481 B
Nix

_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
access.online = {
# temporarily offline for server migration
available = false;
};
exports = {
services = {
nginx.enable = true;
motion = {
enable = true;
id = "kitchen";
displayName = "Motion/kitchen";
};
};
};
network.networks = {
local = {
slaac.postfix = "40c3:23df:e82a:b214";
address4 = "10.1.1.63";
};
};
}