infrastructure/systems/logistics/default.nix
2024-09-07 15:41:00 -07:00

23 lines
386 B
Nix

_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
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";
};
};
}