📺 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

View File

@ -14,6 +14,7 @@ in
./default-applications.nix
./fish.nix
./git.nix
./mpv.nix
./nixvim
./rofi
./wlogout

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