diff --git a/modules/darwin/creative.nix b/modules/darwin/creative.nix index 6256275..99661d4 100644 --- a/modules/darwin/creative.nix +++ b/modules/darwin/creative.nix @@ -2,6 +2,14 @@ let np = config.nathan.programs; in with lib; { # Install media applications - config = - mkIf np.creative.enable { homebrew.casks = [{ name = "inkscape"; }]; }; + config = mkIf np.creative.enable { + homebrew.casks = [ + # Inkscape + { + name = "inkscape"; + } + # 3dprinting + { name = "ultimaker-cura"; } + ]; + }; }