Files
homelab/containers/frigate.nix
2025-12-09 14:35:20 +01:00

30 lines
487 B
Nix

{ ... }:
{
my-lxc.frigate = {
container = {
cores = 4;
memory = 2048;
disk = "12G";
swap = 1024;
};
system = {
port = 80;
importConfig = [
../config/frigate-frigate.nix
];
additional = {
hardware.graphics.enable = true;
};
};
logging = {
enable = true;
metricsEnable = true;
journalLoggers = {
frigate = "";
};
};
private = false;
auth = true;
};
}