nixos-config/modules/home/retroarch.nix
2025-07-10 10:05:44 +02:00

12 lines
176 B
Nix

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