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

34 lines
599 B
Nix

{ ... }:
let
db_pass = import ../config/_passwords.nix;
in
{
my-lxc.papers = {
container = {
cores = 1;
memory = 512;
disk = "10G";
swap = 512;
};
db = {
enable = true;
password = db_pass.papers;
};
system = {
port = 28981;
importConfig = [
../config/papers-paperless.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = true;
auth = true;
group = "Outils";
icon = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/paperless-ngx.png";
};
}