nix-conf/system/dev/dn-server/services/paperless-ngx.nix
2025-11-23 16:24:38 +08:00

9 lines
204 B
Nix

{ config, ... }:
{
imports = [
(import ../../../modules/paperless-ngx.nix {
domain = "paperless.net.dn";
passwordFile = config.sops.secrets."paperless/adminPassword".path;
})
];
}