System/home-manager/linux/programs/image-editing.nix

19 lines
527 B
Nix
Raw Normal View History

2022-06-23 02:57:41 -04:00
{ config, lib, pkgs, inputs, ... }:
let unstable = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}";
in {
2022-06-23 02:57:41 -04:00
config = lib.mkIf config.nathan.programs.image-editing {
home.packages = with pkgs; [
# RawTherapee for raw editing
unstable.rawtherapee
# Gimp for complex editing
2023-01-20 07:04:28 -05:00
gimp-with-plugins
2022-06-23 02:57:41 -04:00
# Krita for drawing
unstable.krita
# Pinta for basic image editing
unstable.pinta
# Command line tools for image conversion and handling
imagemagickBig
];
};
}