retronix/games.nix

14 lines
244 B
Nix
Raw Normal View History

2024-01-06 22:42:36 +01:00
{pkgs, ...}: {
retronix = {
2023-12-30 18:38:14 +01:00
systems = {
2024-01-06 22:42:36 +01:00
"Arcade" = {
extension = ".sh";
games = with pkgs.roms; [
atetris
];
};
2023-12-30 18:38:14 +01:00
};
2024-01-06 22:42:36 +01:00
emulationstation.inputCfg = builtins.readFile ./es_input.cfg;
2023-12-30 18:38:14 +01:00
};
}