📺 Added Mpv and updated flakes

This commit is contained in:
2025-01-11 11:53:20 +01:00
parent 1834e6f23e
commit c5b5896aef
3 changed files with 68 additions and 39 deletions

11
home-manager/mpv.nix Normal file
View File

@ -0,0 +1,11 @@
{
programs.mpv = {
enable = true;
config = {
hwdec = "auto-safe";
vo = "gpu";
profile = "gpu-hq";
gpu-context = "wayland";
};
};
}