add retroarch cores

This commit is contained in:
Frost-Phoenix 2024-04-19 14:57:19 +02:00
parent 19bf98ff52
commit d71594571d
3 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [
(retroarch.override {
cores = with libretro; [
fceumm
gambatte
mgba
snes9x
];
})
]);
}