nixpkgs/doc/packages/krita.section.md
Pol Dellaiera bcea0cf344 doc: update Nix code snippets format
Command: `mdcr --config doc/tests/mdcr-config.toml doc/`
2025-04-17 01:30:34 +02:00

1.1 KiB

Krita

Python plugins

"pykrita" plugins should be installed following Krita's manual. This generally involves extracting the extension to ~/.local/share/krita/pykrita/.

Binary plugins

Binary plugins are Dynamically Linked Libraries to be loaded by Krita.

Note: You most likely won't need to deal with binary plugins, all known plugins are bundled and enabled by default.

Installing binary plugins

You can choose what plugins are added to Krita by overriding the binaryPlugins attribute.

If you want to add plugins instead of replacing, you can read the list of previous plugins via pkgs.krita.binaryPlugins:

(pkgs.krita.override (old: {
  binaryPlugins = old.binaryPlugins ++ [ your-plugin ];
}))

Example structure of a binary plugin

/nix/store/00000000000000000000000000000000-krita-plugin-example-1.2.3
└── lib
   └── kritaplugins
      └── krita_example.so