qenya: Install Celluloid (on GNOME) or Haruna (on KDE)

This commit is contained in:
Katherina Walshe-Grey 2025-05-16 17:28:53 +01:00
parent 7dc684cce3
commit 78118c14dc

View file

@ -3,6 +3,8 @@
let
inherit (lib) optionals;
isGraphical = osConfig.services.xserver.enable;
isGnome = osConfig.services.xserver.desktopManager.gnome.enable;
isPlasma = osConfig.services.desktopManager.plasma6.enable || osConfig.services.xserver.desktopManager.plasma5.enable;
in
{
home.packages = with pkgs; [
@ -30,5 +32,9 @@ in
libreoffice
hunspell
hunspellDicts.en_GB-ise
] ++ optionals isGnome [
celluloid
] ++ optionals isPlasma [
haruna
];
}