nix-configurations/home/features/desktop/office.nix

23 lines
359 B
Nix
Raw Normal View History

2023-04-09 09:12:23 +00:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.desktop.office;
in {
options.features.desktop.office.enable =
mkEnableOption "enable office features";
config = mkIf cfg.enable {
home.packages = with pkgs; [
nextcloud-client
libreoffice
neomutt
tutanota-desktop
okular
zathura
];
};
2023-02-01 11:38:23 +00:00
}