39 lines
878 B
Nix
39 lines
878 B
Nix
# document management system
|
|
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.profiles.paperless;
|
|
in
|
|
{
|
|
options.my.profiles.paperless = with lib; {
|
|
enable = mkEnableOption "Paperless Server";
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 28981;
|
|
example = 8080;
|
|
description = "Internal port for webui";
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
type = types.attrs;
|
|
default = { };
|
|
example = {
|
|
PAPERLESS_OCR_LANGUAGE = "deu+eng";
|
|
};
|
|
description = "Extra configuration options";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.paperless = {
|
|
enable = true;
|
|
address = "0.0.0.0";
|
|
dataDir = "/home/finn/documents/paperless";
|
|
#inherit (cfg) port extraConfig;
|
|
port = cfg.port;
|
|
extraConfig = cfg.extraConfig;
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ cfg.port ];
|
|
};
|
|
}
|