qenya/packages: rename from cli, include common graphical packages

This commit is contained in:
Katherina Walshe-Grey 2024-10-08 10:46:05 +01:00
parent ecd98229ff
commit 84fb7727da
8 changed files with 40 additions and 48 deletions

29
home/qenya/packages.nix Normal file
View file

@ -0,0 +1,29 @@
{ config, lib, pkgs, osConfig, ... }:
let
inherit (lib) optionals;
in
{
home.packages = with pkgs; [
tree # like `ls -R` but nicer
units
# Extremely important
fortune
cowsay
lolcat
] ++ optionals osConfig.qenya.base-graphical.enable [
bitwarden
discord
feishin
gimp-with-plugins
jellyfin-media-player
tor-browser-bundle-bin
zoom-us
# libreoffice
libreoffice
hunspell
hunspellDicts.en_GB-ise
];
}