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";
|
2023-08-23 07:13:04 -04:00
|
|
|
greedy = true;
|
2023-07-27 18:14:41 -04:00
|
|
|
}
|
|
|
|
# 3dprinting
|
2023-08-19 10:25:52 -04:00
|
|
|
{
|
|
|
|
name = "ultimaker-cura";
|
2023-08-23 07:13:04 -04:00
|
|
|
greedy = true;
|
2023-08-19 10:25:52 -04:00
|
|
|
}
|
2023-08-23 07:18:48 -04:00
|
|
|
{
|
|
|
|
name = "orcaslicer";
|
|
|
|
greedy = true;
|
|
|
|
}
|
2023-08-23 07:13:04 -04:00
|
|
|
{
|
|
|
|
name = "freecad";
|
|
|
|
greedy = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "solvespace";
|
|
|
|
greedy = true;
|
|
|
|
}
|
2023-07-27 18:14:41 -04:00
|
|
|
];
|
|
|
|
};
|
2023-07-21 19:08:40 -04:00
|
|
|
}
|