2023-09-08 16:10:15 +02:00
|
|
|
{
|
2023-10-13 21:04:24 +02:00
|
|
|
config,
|
|
|
|
lib,
|
2023-09-08 16:10:15 +02:00
|
|
|
pkgs,
|
|
|
|
...
|
2024-05-05 12:38:40 +02:00
|
|
|
}: let
|
2023-10-13 21:04:24 +02:00
|
|
|
cfg = config.myOptions.programs.mpv;
|
2024-04-14 18:49:29 +02:00
|
|
|
inherit (config.myOptions.other.system) username;
|
2024-05-05 12:38:40 +02:00
|
|
|
|
2024-05-05 19:13:38 +02:00
|
|
|
inherit (lib) mkEnableOption mkIf mkOption;
|
|
|
|
inherit (lib.types) nullOr str;
|
2023-10-13 21:04:24 +02:00
|
|
|
in {
|
2024-05-05 19:13:38 +02:00
|
|
|
options.myOptions.programs.mpv = {
|
|
|
|
enable = mkEnableOption "mpv";
|
|
|
|
gpu = mkOption {
|
|
|
|
description = "gpu used to render videos played through mpv";
|
|
|
|
type = nullOr str;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
};
|
2023-10-13 21:04:24 +02:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2024-02-29 00:29:56 +01:00
|
|
|
home-manager.users.${username} = {
|
2023-10-13 21:04:24 +02:00
|
|
|
programs.mpv = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
vo = "gpu-next";
|
|
|
|
hwdec = "auto";
|
|
|
|
gpu-api = "vulkan";
|
2024-05-05 19:13:38 +02:00
|
|
|
vulkan-device = mkIf (cfg.gpu != null) cfg.gpu;
|
2023-10-13 21:04:24 +02:00
|
|
|
volume = 50;
|
|
|
|
osc = "no";
|
|
|
|
osd-bar = "no";
|
|
|
|
border = "no";
|
|
|
|
};
|
|
|
|
scripts = with pkgs.mpvScripts; [
|
|
|
|
mpris
|
|
|
|
thumbfast
|
|
|
|
sponsorblock
|
|
|
|
uosc
|
|
|
|
];
|
|
|
|
};
|
2023-09-08 16:10:15 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|