Files
homelab/containers/grocy.nix
2025-11-09 00:45:00 +01:00

24 lines
351 B
Nix

{ ... }:
{
my-lxc.grocy = {
container = {
cores = 1;
memory = 512;
disk = "4G";
swap = 512;
};
system = {
port = 80;
importConfig = [
../config/grocy-grocy.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = false;
auth = true;
};
}