retronix/games.nix
2024-01-15 15:14:30 +01:00

22 lines
425 B
Nix

{ config, pkgs, ...}:
let
inherit (config.retronix.retroarch) mapRetroarchConfig;
in
{
retronix = {
systems = {
"Arcade" = {
extension = ".sh";
games = with pkgs.roms; mapRetroarchConfig {} [
atetris
dkong
mario
neopong
pacman
spacedx
];
};
};
emulationstation.inputCfg = builtins.readFile ./es_input.cfg;
};
}