8 lines
196 B
Nix
8 lines
196 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let np = config.nathan.programs;
|
||
|
in with lib; {
|
||
|
# Install media applications
|
||
|
config =
|
||
|
mkIf np.creative.enable { homebrew.casks = [{ name = "inkscape"; }]; };
|
||
|
}
|