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 = [
|
|
|
|
{ name = "eqmac"; }
|
|
|
|
{ name = "deadbeef-nightly"; }
|
|
|
|
{ name = "jellyfin-media-player"; }
|
2023-04-18 13:25:04 -04:00
|
|
|
{ name = "spotify"; }
|
2023-04-18 11:21:35 -04:00
|
|
|
];
|
2023-03-30 16:25:34 -04:00
|
|
|
};
|
2023-03-30 16:14:00 -04:00
|
|
|
}
|