oizys/modules/desktop/gui.nix
2024-04-03 14:12:47 -05:00

26 lines
330 B
Nix

{
pkgs,
config,
lib,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf config.oizys.desktop.enable {
environment.systemPackages = with pkgs; [
wezterm
alacritty
xfce.thunar
inkscape
gimp
zotero
libreoffice-qt
hunspell # spell check for libreoffice
];
};
}