mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
one
This commit is contained in:
parent
1cfda9c67b
commit
1feef552da
2 changed files with 7 additions and 2 deletions
|
|
@ -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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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" ];
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue