17 lines
345 B
Nix
17 lines
345 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 = 8081;
|
|
description = "Internal port for webui";
|
|
};
|
|
};
|
|
} |