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

29 lines
552 B
Nix

{ ... }:
{
# TODO: Manual bind-mount /dev/bus/usb/{bus}/{device} # check with lsusb
my-lxc.power = {
container = {
cores = 1;
memory = 512;
disk = "5G";
swap = 512;
onboot = false;
};
system = {
port = 80;
importConfig = [
../config/power-ups.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = true;
auth = true;
group = "Système";
icon = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/ups.png";
};
}