2024-01-30 14:21:50 +00:00
|
|
|
{pkgs, ...}: {
|
2024-01-21 10:31:46 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
prismlauncher
|
|
|
|
(retroarch.override {
|
2024-01-30 14:21:50 +00:00
|
|
|
cores = with libretro; [dolphin mgba mupen64plus];
|
2024-01-21 10:31:46 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
programs = {
|
|
|
|
xwayland.enable = true;
|
|
|
|
gamescope = {
|
|
|
|
enable = true;
|
|
|
|
capSysNice = true;
|
|
|
|
};
|
|
|
|
steam = {
|
|
|
|
enable = true;
|
|
|
|
remotePlay.openFirewall = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|