diff --git a/nixos/machines/chungus/paperless.nix b/nixos/machines/chungus/paperless.nix index 87ec104..85cfed6 100644 --- a/nixos/machines/chungus/paperless.nix +++ b/nixos/machines/chungus/paperless.nix @@ -1,8 +1,15 @@ -{ config, ... }: { +{ config, pkgs, nixos-artwork, ... }: { services.paperless = { enable = true; address = "0.0.0.0"; + package = pkgs.unstable.paperless; + extraConfig = { + PAPERLESS_OCR_LANGUAGE = "deu+eng"; + PAPERLESS_APP_TITLE = "paperless.chungus.private"; + PAPERLESS_CONSUMER_IGNORE_PATTERN = builtins.toJSON [ ".DS_STORE/*" "desktop.ini" ]; + #PAPERLESS_CONSUMER_DELETE_DUPLICATES = true; + }; }; networking.firewall.interfaces.wg0.allowedTCPPorts = [ config.services.paperless.port ];