32 lines
556 B
Nix
32 lines
556 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";
|
|
greedy = true;
|
|
}
|
|
# 3dprinting
|
|
{
|
|
name = "ultimaker-cura";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "orcaslicer";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "freecad";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "solvespace";
|
|
greedy = true;
|
|
}
|
|
];
|
|
};
|
|
}
|