oizys/modules/desktop/gui.nix

25 lines
329 B
Nix

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