System/modules/darwin/creative.nix

16 lines
295 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-21 19:08:40 -04:00
}