This commit is contained in:
Nathan McCarty 2023-07-27 18:14:41 -04:00
parent fc47f89c4a
commit b741e767e6
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:3elIBybO7zXuCg+/os7OlO2fwfRPXmObQjcHXBf7Hfg
1 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,14 @@
let np = config.nathan.programs;
in with lib; {
# Install media applications
config =
mkIf np.creative.enable { homebrew.casks = [{ name = "inkscape"; }]; };
config = mkIf np.creative.enable {
homebrew.casks = [
# Inkscape
{
name = "inkscape";
}
# 3dprinting
{ name = "ultimaker-cura"; }
];
};
}