nixos/system/games.nix

21 lines
414 B
Nix
Raw Normal View History

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