12 lines
176 B
Nix
12 lines
176 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
(retroarch.withCores (cores:
|
|
with cores; [
|
|
fceumm
|
|
gambatte
|
|
mgba
|
|
snes9x
|
|
]))
|
|
];
|
|
}
|