nix-dotfiles/modules/software/tools/mpv.nix
2024-05-24 07:19:23 -07:00

26 lines
No EOL
451 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.software.tools.mpv;
in {
options.modules.software.tools.mpv = {
enable = mkEnableOption "Enable mpv, a lightweight video player";
};
config = mkIf cfg.enable {
hm.programs.mpv = {
enable = true;
config = {
hwdec = "auto";
};
scripts = with pkgs.mpvScripts; [
mpris
thumbnail
visualizer
];
};
};
}