System/modules/darwin/creative.nix

21 lines
401 B
Nix
Raw Normal View History

2023-07-21 19:08:40 -04:00
{ config, lib, pkgs, ... }:
let np = config.nathan.programs;
in with lib; {
# Install media applications
2023-07-27 18:14:41 -04:00
config = mkIf np.creative.enable {
homebrew.casks = [
# Inkscape
{
name = "inkscape";
}
# 3dprinting
2023-08-19 10:25:52 -04:00
{
name = "ultimaker-cura";
}
# { name = "orcaslicer"; }
2023-07-29 03:49:49 -04:00
{ name = "freecad"; }
2023-08-19 10:25:52 -04:00
{ name = "solvespace"; }
2023-07-27 18:14:41 -04:00
];
};
2023-07-21 19:08:40 -04:00
}