nixos/system/games.nix
Evie Litherland-Smith c33367bdc7 Move games into system/games.nix (rename of steam.nix)
Add RetroArch with some cores, add to games workspace
2024-01-21 10:31:46 +00:00

25 lines
493 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
alephone-marathon
alephone-durandal
alephone-infinity
cemu
prismlauncher
(retroarch.override {
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;
};
};
}