nichts/modules/gui/mpv.nix
2024-07-21 15:11:55 +02:00

26 lines
533 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.modules.usrEnv.programs.media.mpv;
inherit (config.modules.other.system) username;
inherit (lib) mkIf;
in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.mpv = {
enable = true;
config = {
hwdec = "auto";
volume = 50;
osc = "no";
osd-bar = "no";
border = "no";
};
scripts = with pkgs.mpvScripts; [mpris thumbfast sponsorblock uosc];
};
};
};
}