{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    graphviz-nox # for dot

    typst

    (inkscape-with-extensions.override {
      inkscapeExtensions = [
        inkscape-extensions.inkstitch
      ];
    })
    gimp
    krita
  ];
}