nix-git/modules/digikam-rawtherapee-hugin-gimp.nix
2023-12-19 14:03:39 +01:00

12 lines
247 B
Nix

{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
digikam # Photo organization
rawtherapee # Edit RAW photos
hugin # Stitch together panorama photos
gimp # Image Manipulation Program
];
};
}