Desktop: add mpv

This commit is contained in:
Toast 2024-05-18 12:14:41 +02:00
parent 28a3bf2509
commit cc11a5a386
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{pkgs, ...}: {
home-manager.users.toast = {
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
];
config = {
hwdec = "auto";
cache = true;
};
};
};
}