From b741e767e6888246382bf3c6c539b21c3273505f Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 27 Jul 2023 18:14:41 -0400 Subject: [PATCH] Add cura --- modules/darwin/creative.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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"; } + ]; + }; }