{ lib, config, pkgs, inputs, system, ... }:
lib.mkIf config.desktop.enable {

  environment.systemPackages =
    (with pkgs; [

      bc
      jq
      xorg.xrandr

      feh

      enpass
      vesktop
      obsidian
      kicad
      protonmail-desktop
      signal-desktop

      piper

      qemu

      libreoffice
      blender
      gimp
      inkscape
      prusa-slicer
      UVtools
      audacity

      glib
    ])
    ++
    [
      inputs.zen.packages.${system}.specific
    ];

}