Files
nix-config/modules/hm/desktop/mpv.nix
2026-09-11 01:59:55 +05:30

22 lines
350 B
Nix

{
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";
};
};
};
}