diff --git a/modules/home/home.nix b/modules/home/home.nix index dc2d32c..387f650 100755 --- a/modules/home/home.nix +++ b/modules/home/home.nix @@ -13,6 +13,7 @@ imports = [ ./git ./lazygit ./lf + ./mpv ./waybar ./wayland/hyprland ]; diff --git a/modules/home/mpv/default.nix b/modules/home/mpv/default.nix new file mode 100644 index 0000000..a75a946 --- /dev/null +++ b/modules/home/mpv/default.nix @@ -0,0 +1,16 @@ +{ + config, + pkgs, + ... +}: { + programs.mpv = { + enable = true; + scripts = [ + pkgs.mpvScripts.mpris + ]; + bindings = { + WHEEL_UP = "volume 10"; + WHEEL_DOWN = "volume -10"; + }; + }; +} \ No newline at end of file