oizys/modules/desktop/gui.nix

24 lines
316 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
libreoffice-qt
hunspell # spell check for libreoffice
];
};
}