System/modules/darwin/media.nix

26 lines
459 B
Nix
Raw Normal View History

2023-03-30 16:14:00 -04:00
{ config, lib, pkgs, ... }:
let np = config.nathan.programs;
in with lib; {
# Install media applications
2023-03-30 16:25:34 -04:00
config = mkIf np.media.enable {
2023-04-18 11:21:35 -04:00
homebrew.casks = [
2023-08-23 07:13:04 -04:00
{
name = "eqmac";
greedy = true;
}
{
name = "deadbeef-nightly";
greedy = true;
}
{
name = "jellyfin-media-player";
greedy = true;
}
{
name = "spotify";
greedy = true;
}
2023-04-18 11:21:35 -04:00
];
2023-03-30 16:25:34 -04:00
};
2023-03-30 16:14:00 -04:00
}