Files
homelab/containers/frigate.nix
T
Xavier Morel ab98aeb897
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
feat: add groups to authentik apps + add mail base
2026-06-12 21:36:07 +02:00

31 lines
509 B
Nix

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