9 lines
204 B
Nix
Executable file
9 lines
204 B
Nix
Executable file
{ config, ... }:
|
|
{
|
|
imports = [
|
|
(import ../../../modules/paperless-ngx.nix {
|
|
domain = "paperless.net.dn";
|
|
passwordFile = config.sops.secrets."paperless/adminPassword".path;
|
|
})
|
|
];
|
|
}
|