dotfiles/home-manager/programs/mpv.nix

13 lines
239 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;
2024-05-28 14:38:22 +02:00
scripts = with pkgs.mpvScripts; [
autoload
mpris
sponsorblock
];
2023-11-13 20:04:20 +01:00
};
2024-02-27 02:54:02 +01:00
}