feat(desktop): add mpv configuration module

This commit is contained in:
tux
2026-05-12 22:50:45 +05:30
parent 8ec23b15af
commit 71aaf2d392

View File

@@ -0,0 +1,24 @@
{
flake.modules.homeManager.desktop =
{ pkgs, ... }:
{
programs.mpv = {
enable = true;
scripts = (
with pkgs.mpvScripts;
[
modernz
thumbfast
mpris
mpv-image-viewer.image-positioning
]
);
config = {
osc = "no";
border = "no";
};
};
};
}