NixOS-Config/home/guiapps/mpv.nix

12 lines
152 B
Nix
Raw Normal View History

2024-08-24 22:16:51 -04:00
{
# MPV settings
programs.mpv = {
enable = true;
config = {
volume = 55;
loop-playlist = "inf";
osc = "no";
};
};
}