1# Inkscape {#sec-inkscape} 2 3[Inkscape](https://inkscape.org) is a powerful vector graphics editor. 4 5## Plugins {#inkscape-plugins} 6Inkscape plugins are collected in the [`inkscape-extensions`](https://search.nixos.org/packages?channel=unstable&type=packages&query=cudaPackages) package set. 7To enable them, use an override on `inkscape-with-extensions`: 8 9```nix 10inkscape-with-extensions.override { 11 inkscapeExtensions = with inkscape-extensions; [ 12 inkstitch 13 ]; 14} 15``` 16 17Similarly, this works in the shell: 18 19```bash 20$ nix-shell -p 'inkscape-with-extensions.override { inkscapeExtensions = with inkscape-extensions; [inkstitch]; }' 21[nix-shell:~]$ # Ink/Stitch is now available via the extension menu 22[nix-shell:~]$ inkscape 23``` 24 25All available extension can be enabled by passing `inkscapeExtensions = null;`. 26 27::: {.note} 28Loading the Inkscape extensions stand-alone (without using `override`) does not affect Inkscape at all. 29:::