mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
15 lines
260 B
Nix
15 lines
260 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
config = lib.mkIf config.deploy.profile.gui {
|
|
programs.mpv = {
|
|
enable = true;
|
|
config = {
|
|
profile = "gpu-hq";
|
|
gpu-context = "wayland";
|
|
vo = "gpu";
|
|
hwdec = "auto";
|
|
};
|
|
};
|
|
};
|
|
}
|