System/modules/darwin/media.nix

13 lines
283 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"; }
{ name = "jellyfin-media-player"; }
];
};
}