infrastructure/systems/logistics/default.nix
2024-09-07 14:39:45 -07:00

23 lines
381 B
Nix

_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
nginx.enable = true;
motion = {
id = "kitchen";
enable = true;
ports.stream.port = 41081;
};
};
};
network.networks = {
local = {
slaac.postfix = "40c3:23df:e82a:b214";
address4 = "10.1.1.63";
};
};
}