diff --git a/components/common-apps.nix b/components/common-apps.nix index 3eaf818..82f9c4b 100644 --- a/components/common-apps.nix +++ b/components/common-apps.nix @@ -1,25 +1,30 @@ { pkgs, pkgs-unstable, ... }: { - home.packages = with pkgs; [ - bambu-studio - blanket - evolution - gnome-decoder - gnome-calendar - gnome-characters - gnome-contacts - handbrake - imagemagick - inkscape - libreoffice - mpv - obsidian - piper - cartridges - pkgs-unstable.slack - threema-desktop - wireshark-qt - zathura - ]; + home.packages = + with pkgs; + [ + bambu-studio + blanket + evolution + gnome-decoder + gnome-calendar + gnome-characters + gnome-contacts + handbrake + imagemagick + inkscape + libreoffice + mpv + obsidian + piper + cartridges + pkgs-unstable.slack + threema-desktop + wireshark-qt + zathura + ] + ++ lib.optionals (!stdenv.isDarwin) [ + pdfarranger + ]; }