25 lines
493 B
Nix
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;
|
|
};
|
|
};
|
|
}
|