mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
12 lines
239 B
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
|
|
];
|
|
};
|
|
}
|