1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-03-01 04:40:56 +01:00
nixos-config/users/rouven/modules/mpv/default.nix

10 lines
100 B
Nix
Raw Normal View History

2023-05-26 14:50:29 +02:00
{ ... }:
{
programs.mpv = {
enable = true;
config = {
hwdec = "auto";
};
};
}