feat: clean up configuration

This commit is contained in:
Xavier Morel
2025-07-24 12:17:21 +02:00
parent 697e300521
commit 522794e5ed
15 changed files with 96 additions and 92 deletions

View File

@@ -0,0 +1,15 @@
{
pkgs,
config,
lib,
...
}:
{
options.myHome.programs.photos.enable = lib.mkEnableOption "enable photo software";
config = lib.mkIf config.myHome.programs.photos.enable {
home.packages = with pkgs; [
# gimp
rawtherapee
];
};
}