dotfiles/home-manager/programs/mpv.nix

8 lines
185 B
Nix
Raw Normal View History

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