dotfiles/nix/modules/nixos/features/homelab/paperless.nix

14 lines
239 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
options.features.homelab.paperless.enable = mkEnableOption "Enable paperless";
config = mkIf config.features.homelab.paperless.enable {
services.paperless = {
enable = true;
};
};
}