Feature: Paperless Module
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
./apps
|
./apps
|
||||||
./hyprland
|
./hyprland
|
||||||
./zsh
|
./zsh
|
||||||
|
./paperless
|
||||||
./prowlarr
|
./prowlarr
|
||||||
./radarr
|
./radarr
|
||||||
./docker
|
./docker
|
||||||
|
|||||||
@@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user