2025-10-29 11:21:37 +01:00

22 lines
339 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.desktop.office;
in {
options.features.desktop.office.enable =
mkEnableOption "install office and paperwork stuff";
config = mkIf cfg.enable {
home.packages = with pkgs; [
anytype
evince
libreoffice-fresh
xournalpp
];
};
}