System/modules/darwin/media.nix

14 lines
311 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"; }
{ name = "spotify"; }
];
};
}