System/modules/darwin/creative.nix

18 lines
354 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
{ name = "ultimaker-cura"; }
2023-07-29 02:41:02 -04:00
{ name = "orcaslicer"; }
2023-07-29 03:49:49 -04:00
{ name = "freecad"; }
2023-07-27 18:14:41 -04:00
];
};
2023-07-21 19:08:40 -04:00
}