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 ]; }