2023-09-11 16:10:18 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
2025-02-09 21:35:44 +01:00
|
|
|
users.users."yoda" = {
|
2023-09-11 16:10:18 +02:00
|
|
|
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
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|