Files
homelab/containers/power.nix
T
Xavier Morel 78c3c3bf68
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
chore: add icons & descr for authentik
2026-06-01 15:04:20 +02:00

27 lines
506 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;
};
system = {
port = 80;
importConfig = [
../config/power-ups.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = true;
auth = true;
icon = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/ups.png";
};
}