nix-config/modules/home/media/default.nix
2024-01-31 21:51:06 +01:00

21 lines
311 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
spotify
image-roll
mopidy-muse
];
services.mopidy = {
enable = true;
extensionPackages = with pkgs; [
mopidy-local
mopidy-tidal
mopidy-spotify
mopidy-tidal
];
};
programs.mpv = {
enable = true;
};
}