2023-02-05 13:36:38 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.features.desktop.design;
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.features.desktop.design.enable = mkEnableOption "enable design tools";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
argyllcms
|
|
|
|
darktable
|
|
|
|
gimp-with-plugins
|
|
|
|
gimpPlugins.gmic
|
|
|
|
gmic
|
|
|
|
gmic-qt
|
|
|
|
imagemagick
|
|
|
|
inkscape
|
|
|
|
lcms2
|
|
|
|
];
|
|
|
|
};
|
2023-02-01 11:38:23 +00:00
|
|
|
}
|