dotfiles/home-manager/programs/mpv.nix

12 lines
239 B
Nix

{ pkgs, config, ... }:
{
programs.mpv = {
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
scripts = with pkgs.mpvScripts; [
autoload
mpris
sponsorblock
];
};
}