nixos-config/modules/home/retroarch.nix
2024-04-19 14:57:19 +02:00

13 lines
190 B
Nix

{ pkgs, ... }:
{
home.packages = (with pkgs; [
(retroarch.override {
cores = with libretro; [
fceumm
gambatte
mgba
snes9x
];
})
]);
}