Add RetroArch as a home package for devices named "ryu" and enhance MPV configuration with GPU settings. Adjust wallpaper engine service to improve performance. Add a script for enabling HDR with Steam commands.
9 lines
118 B
Nix
9 lines
118 B
Nix
{
|
|
pkgs,
|
|
device,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.packages = lib.optionals (device.name == "ryu") [pkgs.retroarch-full];
|
|
}
|