summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/bundles
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/features/gui/bundles')
-rw-r--r--home-manager/features/gui/bundles/office.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/home-manager/features/gui/bundles/office.nix b/home-manager/features/gui/bundles/office.nix
new file mode 100644
index 0000000..51d5855
--- /dev/null
+++ b/home-manager/features/gui/bundles/office.nix
@@ -0,0 +1,17 @@
+{config, lib, pkgs, ...}: let
+ cfg = config.features.gui.bundles.office;
+in {
+ options.features.gui.bundles.office.enable = lib.mkEnableOption "the office bundle";
+ config = lib.mkIf cfg.enable {
+ home.packages = with pkgs; [
+ libreoffice
+ kdePackages.okular
+
+ # Fonts
+ corefonts
+ vista-fonts
+ ];
+ fonts.fontconfig.enable = true;
+ # Run fc-cache command to update fonts after installing
+ };
+}