26 lines
459 B
Nix
26 lines
459 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";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "deadbeef-nightly";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "jellyfin-media-player";
|
|
greedy = true;
|
|
}
|
|
{
|
|
name = "spotify";
|
|
greedy = true;
|
|
}
|
|
];
|
|
};
|
|
}
|