nixos-config/modules/home/retroarch.nix

13 lines
190 B
Nix
Raw Normal View History

2024-04-19 14:57:19 +02:00
{ pkgs, ... }:
{
home.packages = (with pkgs; [
(retroarch.override {
cores = with libretro; [
fceumm
gambatte
mgba
snes9x
];
})
]);
}