diff --git a/modules/environments/default.nix b/modules/environments/default.nix index 7e1e2fc..1a6c3c2 100644 --- a/modules/environments/default.nix +++ b/modules/environments/default.nix @@ -4,6 +4,7 @@ ./apps ./hyprland ./zsh + ./paperless ./prowlarr ./radarr ./docker diff --git a/modules/environments/paperless/default.nix b/modules/environments/paperless/default.nix new file mode 100644 index 0000000..91e9df7 --- /dev/null +++ b/modules/environments/paperless/default.nix @@ -0,0 +1,17 @@ +# 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 = 8081; + description = "Internal port for webui"; + }; + }; +} \ No newline at end of file