bonfire/modules/desktop/documents/default.nix
2023-06-06 23:18:09 +05:00

18 lines
337 B
Nix

{ options, config, lib, pkgs, ... }:
with lib;
with lib.custom;
let
cfg = config.modules.desktop.documents;
in {
options.modules.desktop.documents = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
user.packages = with pkgs; [
onlyoffice-bin
tectonic
];
};
}