t14_legacy_config/home/apps/docs.nix

21 lines
410 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, lib, pkgs, ... } :
with lib;
let
cfg = config.local.apps.docs;
in
{
options.local.apps.docs.enable = mkEnableOption "Doc management tools";
config = mkIf cfg.enable {
home.packages = with pkgs; [
libreoffice-fresh
okular
pdfarranger
xournalpp
2022-11-30 04:29:21 +01:00
];
xdg.mimeApps.defaultApplications = {
"application/pdf" = [ "org.kde.okular.desktop" ];
};
};
}