retronix/games.nix
2024-01-11 02:10:21 +01:00

19 lines
329 B
Nix

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