mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-04-02 16:55:59 +02:00
17 lines
423 B
Nix
17 lines
423 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
user = config.yoda.user;
|
|
in
|
|
{
|
|
users.users."${user}" = {
|
|
packages = with pkgs; [
|
|
# TODO: Temporary fix until exiftool fix is landed in NixOS stable
|
|
# https://github.com/NixOS/nixpkgs/issues/332561
|
|
unstable.digikam # Photo organization
|
|
rawtherapee # Edit RAW photos
|
|
hugin # Stitch together panorama photos
|
|
gimp # Image Manipulation Program
|
|
];
|
|
};
|
|
}
|