From 27cabe15a89a35d5e0b302ce19511e72467a9660 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sat, 1 May 2021 12:48:48 +0200 Subject: [PATCH] Add tools to work with images --- roles/subroles/photography.nix | 7 +++++++ roles/workstation.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 roles/subroles/photography.nix diff --git a/roles/subroles/photography.nix b/roles/subroles/photography.nix new file mode 100644 index 0000000..0dc204b --- /dev/null +++ b/roles/subroles/photography.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + rawtherapee + darktable + ]; +} diff --git a/roles/workstation.nix b/roles/workstation.nix index dcab4b8..861dc3b 100644 --- a/roles/workstation.nix +++ b/roles/workstation.nix @@ -217,6 +217,7 @@ ./subroles/entertainment.nix ./subroles/internet.nix ./subroles/office.nix + ./subroles/photography.nix ./subroles/university.nix ]; }