nix-config/modules/user/media.nix
2024-07-26 20:35:44 +02:00

24 lines
424 B
Nix

{ config, lib, pkgs, ... }: lib.mkIf config.full {
home-manager.users.${config.username} = {
home.packages = with pkgs; [
loupe
spotify
];
programs.mpv = {
enable = true;
};
programs.mopidy = {
enable = true;
extensionPackages = with pkgs; [
mopidy-mpd
mopidy-mpris
mopidy-muse
mopidy-spotify
mopidy-local
];
};
};
}