add paperless-ngx

This commit is contained in:
admin 2025-07-01 22:11:39 +01:00
parent 934a8207ad
commit 8655ff5a44
2 changed files with 25 additions and 2 deletions

View File

@ -116,7 +116,6 @@
smartmontools smartmontools
nixpkgs-fmt # nix formatter nixpkgs-fmt # nix formatter
]; ];
nixpkgs.config.brave.commandLineArgs = "--enable-features=enable-force-dark";
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts

View File

@ -545,6 +545,30 @@
}; };
}; };
paperless-ngx = {
image = "ghcr.io/paperless-ngx/paperless-ngx:latest";
autoStart = true;
autoUpdate = "registry";
network = "bridge";
environmentFile = [
"/mnt/services/secrets/default"
];
volumes = [
"/mnt/services/podman/paperless-ngx/data:/usr/src/paperless/data"
"/mnt/services/podman/paperless-ngx/media:/usr/src/paperless/media"
"/mnt/services/podman/paperless-ngx/export:/usr/src/paperless/export"
"/mnt/data/scans:/usr/src/paperless/consume"
];
ports = [
"8009:8000"
];
extraConfig = {
Service = {
TimeoutStartSec = 900;
};
};
};
prowlarr = { prowlarr = {
image = "lscr.io/linuxserver/prowlarr:latest"; image = "lscr.io/linuxserver/prowlarr:latest";
autoStart = true; autoStart = true;