Files
homelab/containers/z2m.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

27 lines
556 B
Nix

{ ... }:
{
my-lxc.z2m = {
container = {
cores = 1;
memory = 512;
disk = "6G";
swap = 512;
onboot = false;
};
system = {
additionalPorts = [ 80 ];
importConfig = [
../config/z2m-zigbee2mqtt.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = true; # available only on private lan
auth = true; # auth overlay
group = "Système";
icon = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/zigbee2mqtt-light.png";
};
}