From 28dd018961042d1899187ef1e4734b6316881b5b Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sun, 30 Mar 2025 23:59:39 +0200 Subject: [PATCH] gimp3 incomming --- home-modules/gimp.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/home-modules/gimp.nix b/home-modules/gimp.nix index 4ed7ca4..b9ebf9a 100644 --- a/home-modules/gimp.nix +++ b/home-modules/gimp.nix @@ -1,9 +1,10 @@ -{ pkgs, lib, host, ... }: +{ pkgs-latest, ... }: { - home.packages = with pkgs; [ - (gimp-with-plugins.override { - plugins = with gimpPlugins; [ bimp ]; - }) + home.packages = with pkgs-latest; [ + # (gimp-with-plugins.override { + # plugins = with gimpPlugins; [ bimp ]; + # }) + gimp ]; }