infrastructure/systems/logistics/default.nix
arcnmx e4d9ebf56e chore(fluidd): integrate into access
it's just a static file overlay on top of moonraker
2024-08-14 10:14:01 -07:00

24 lines
412 B
Nix

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