This commit is contained in:
Bryan Ramos 2026-03-13 22:32:16 -04:00
parent 1cfda9c67b
commit 1feef552da
2 changed files with 7 additions and 2 deletions

View file

@ -7,7 +7,7 @@
modules.system = { modules.system = {
nginx.enable = true; nginx.enable = true;
forgejo.enable = true; forgejo.enable = true;
frigate.enable = false; frigate.enable = true;
immich.enable = true; immich.enable = true;
bitcoin = { bitcoin = {
enable = true; enable = true;
@ -144,6 +144,11 @@
interface = "enp2s0f1"; interface = "enp2s0f1";
bind-interfaces = true; bind-interfaces = true;
dhcp-range = "192.168.1.100,192.168.1.200,24h"; dhcp-range = "192.168.1.100,192.168.1.200,24h";
# Static DHCP reservations for cameras
dhcp-host = [
"00:1f:54:c2:d1:b1,192.168.1.194,parking_lot"
];
}; };
}; };

View file

@ -43,7 +43,7 @@ in
parking_lot = { parking_lot = {
detect.enabled = false; detect.enabled = false;
ffmpeg.inputs = [{ ffmpeg.inputs = [{
path = "rtsp://admin:ocu?u3Su@192.168.0.59/cam/realmonitor?channel=1&subtype=0"; path = "rtsp://admin:ocu?u3Su@192.168.1.194/cam/realmonitor?channel=1&subtype=0";
roles = [ "record" ]; roles = [ "record" ];
}]; }];
}; };