15 lines
228 B
Nix
15 lines
228 B
Nix
{ pkgs, ... }: {
|
|
home.packages = [
|
|
(pkgs.retroarch.withCores (
|
|
cores: with cores; [
|
|
pcsx2
|
|
ppsspp
|
|
snes9x
|
|
dolphin
|
|
mupen64plus
|
|
desmume
|
|
vba-m
|
|
]
|
|
))
|
|
];
|
|
}
|