nix-git/modules/digikam-rawtherapee-hugin-gimp.nix

14 lines
384 B
Nix
Raw Normal View History

2023-09-11 16:10:18 +02:00
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
2024-08-13 16:04:32 +02:00
# TODO: Temporary fix until exiftool fix is landed in NixOS stable
# https://github.com/NixOS/nixpkgs/issues/332561
unstable.digikam # Photo organization
2023-09-16 15:17:17 +02:00
rawtherapee # Edit RAW photos
2023-11-30 15:58:51 +01:00
hugin # Stitch together panorama photos
2023-12-19 14:03:39 +01:00
gimp # Image Manipulation Program
2023-09-11 16:10:18 +02:00
];
};
}