A Nix flake that packages PhotoGIMP customization's for GIMP on Linux, providing a Photoshop-like experience with familiar UI and shortcuts.
- Any Linux distro
- Nix package manager with flakes enabled
Note
This flake is using NixPak for sandboxing GIMP, this means that it will not override an existing GIMP installation. The config directory is ~/.config/PhotoGIMP/$GIMP_VERSION (currently 3.0)
Add this flake as an Input:
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-photogimp = {
url = "github:Libadoxon/nix-photo-gimp";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}Than add it to your environment.systemPackages or home.packages like so:
{ inputs, pkgs, ... }: {
home.packages = [ inputs.nix-photogimp.packages.${pkgs.system}.default ];
}Rebuild and PhotoGIMP should be available to you.
nix profile install github:Libadoxon/nix-photo-gimpAdapted from aloshy-ai/nix-photogimp, if you're running Darwin, that is the flake for you (only GIMP 2 at the moment)