dots/modules/nixos/features/paperless.nix
2025-12-29 14:19:31 +11:00

43 lines
875 B
Nix

{
config,
...
}:
let
port = 5013;
in
{
services = {
paperless = {
enable = true;
dataDir = "/srv/paperless";
database.createLocally = true;
passwordFile = config.age.secrets.paperless.path;
inherit port;
settings = {
PAPERLESS_URL = "https://paperless.fi33.buzz";
};
};
borgmatic.settings = {
postgresql_databases = [
{
name = "paperless";
hostname = "localhost";
username = "root";
password = "{credential systemd borgmatic-pg}";
}
];
};
nginx.virtualHosts."paperless.fi33.buzz" = {
forceSSL = true;
useACMEHost = "fi33.buzz";
locations."/".proxyPass = "http://localhost:${toString port}";
};
};
age.secrets."paperless" = {
file = ../../../secrets/paperless.age;
owner = "paperless";
};
}