Feature: Paperless Module

This commit is contained in:
marthsincemelee
2024-01-20 10:03:13 +01:00
parent 5b2d8ce8b6
commit 3174128bab
2 changed files with 18 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@
./apps
./hyprland
./zsh
./paperless
./prowlarr
./radarr
./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";
};
};
}