Add jellyfin media player to mac

This commit is contained in:
Nathan McCarty 2023-04-18 11:21:35 -04:00
parent 4ae288390c
commit ddf381af67
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@ let np = config.nathan.programs;
in with lib; { in with lib; {
# Install media applications # Install media applications
config = mkIf np.media.enable { config = mkIf np.media.enable {
homebrew.casks = [ { name = "eqmac"; } { name = "deadbeef-nightly"; } ]; homebrew.casks = [
{ name = "eqmac"; }
{ name = "deadbeef-nightly"; }
{ name = "jellyfin-media-player"; }
];
}; };
} }