diff options
| author | triethyl <triethylammonium@pm.me> | 2025-12-03 09:19:46 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-12-03 09:19:46 -0500 |
| commit | 8b9502c1b647adf15cf19b76e49d0b6b10ef28d7 (patch) | |
| tree | 86fd30bca24fa64e453e497c94f36978562751f4 /home-manager/features/gui/bundles | |
| parent | 959026485d7783be4963e71bd93edecb720441af (diff) | |
home-manager: fixed iamb feature
Diffstat (limited to 'home-manager/features/gui/bundles')
| -rw-r--r-- | home-manager/features/gui/bundles/office.nix | 17 |
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 + }; +} |
