System/modules/darwin/creative.nix

8 lines
196 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
config =
mkIf np.creative.enable { homebrew.casks = [{ name = "inkscape"; }]; };
}