Add Resynthesizer plugin to GIMP

This commit is contained in:
Jakob Lechner 2025-12-12 13:05:02 +01:00
parent 82ce9e9ac7
commit 81cbb02774

View file

@ -1,7 +1,13 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs; [
gimp
home.packages = [
(
pkgs.gimp-with-plugins.override {
plugins = with pkgs.gimpPlugins; [
resynthesizer
];
}
)
];
}