System/modules/darwin/creative.nix

21 lines
401 B
Nix

{ config, lib, pkgs, ... }:
let np = config.nathan.programs;
in with lib; {
# Install media applications
config = mkIf np.creative.enable {
homebrew.casks = [
# Inkscape
{
name = "inkscape";
}
# 3dprinting
{
name = "ultimaker-cura";
}
# { name = "orcaslicer"; }
{ name = "freecad"; }
{ name = "solvespace"; }
];
};
}