dotfiles/home-manager/programs/mpv.nix

9 lines
217 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2023-11-13 20:04:20 +01:00
{
programs.mpv = {
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
2023-11-13 20:04:20 +01:00
scripts = with pkgs.mpvScripts; [ autoload mpris sponsorblock ];
};
2024-02-27 02:54:02 +01:00
}