Files
nixos/modules/environments/paperless/default.nix
T
2024-01-20 10:18:08 +01:00

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";
};
};
}