System/modules/darwin/media.nix

9 lines
225 B
Nix

{ config, lib, pkgs, ... }:
let np = config.nathan.programs;
in with lib; {
# Install media applications
config = mkIf np.media.enable {
homebrew.casks = [ { name = "eqmac"; } { name = "deadbeef-nightly"; } ];
};
}