feat: init mpv

This commit is contained in:
notohh 2023-02-07 21:02:30 -05:00
parent d7e38a8b0f
commit f1ba6e9280
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 17 additions and 0 deletions

View file

@ -13,6 +13,7 @@ imports = [
./git
./lazygit
./lf
./mpv
./waybar
./wayland/hyprland
];

View file

@ -0,0 +1,16 @@
{
config,
pkgs,
...
}: {
programs.mpv = {
enable = true;
scripts = [
pkgs.mpvScripts.mpris
];
bindings = {
WHEEL_UP = "volume 10";
WHEEL_DOWN = "volume -10";
};
};
}