nix-git/modules/digikam-rawtherapee-hugin.nix
2023-11-30 15:58:51 +01:00

11 lines
207 B
Nix

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