Compare commits

..

No commits in common. "c729802b6e3e77161a684bcbbc76597308ef1745" and "6b4d8b2e71742bbf37a3a838918dc0af1c267d7e" have entirely different histories.

3 changed files with 1 additions and 47 deletions

View file

@ -46,10 +46,9 @@
./service-atuin.nix
./service-forgejo.nix
./service-paperless.nix
./service-paperless-backup.nix
./service-paperless-healthchecks.nix
./service-paperless-tika.nix
./service-paperless.nix
./service-s3.nix
#./service-taskwarrior.nix
./service-vault.nix

View file

@ -1,36 +0,0 @@
{
config,
pkgs,
lib,
...
}:
{
services.paperless = {
settings = {
PAPERLESS_TIKA_ENABLED = true;
PAPERLESS_TIKA_ENDPOINT = "http://127.0.0.1:${toString config.services.tika.port}";
PAPERLESS_TIKA_GOTENBERG_ENDPOINT = "http://127.0.0.1:${toString config.services.gotenberg.port}";
};
};
services.tika = {
enable = true;
};
services.gotenberg = {
enable = true;
timeout = "300s";
port = 3214;
};
systemd.services.gotenberg = {
environment.HOME = "/run/gotenberg";
serviceConfig = {
SystemCallFilter = lib.mkAfter [ "@chown" ]; # TODO remove when fixed (https://github.com/NixOS/nixpkgs/issues/349123)
WorkingDirectory = "/run/gotenberg";
RuntimeDirectory = "gotenberg";
};
};
}

View file

@ -9,15 +9,6 @@
services.paperless = {
enable = true;
address = "0.0.0.0";
package = pkgs.paperless-ngx.overrideAttrs (old: rec {
version = "2.13.4";
src = pkgs.fetchFromGitHub {
owner = "paperless-ngx";
repo = "paperless-ngx";
rev = "refs/tags/v${version}";
hash = "sha256-db8omhyngvenAgfGGpMAhGkgqGug/sv7AL1G+sniM/c=";
};
});
settings = {
PAPERLESS_OCR_LANGUAGE = "deu+eng";
PAPERLESS_APP_TITLE = "paperless.chungus.private";