nixos-config/modules/home/retroarch.nix

11 lines
161 B
Nix

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