mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
13 lines
189 B
Nix
13 lines
189 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
programs.mpv = {
|
|
enable = true;
|
|
config = {
|
|
profile = "gpu-hq";
|
|
gpu-context = "wayland";
|
|
vo = "gpu";
|
|
hwdec = "auto";
|
|
};
|
|
};
|
|
}
|