18 lines
257 B
Nix
18 lines
257 B
Nix
{ pkgs, ... }:
|
|
let
|
|
retroarchWithCores = (
|
|
pkgs.retroarch.withCores (
|
|
cores: with cores; [
|
|
bsnes
|
|
mgba
|
|
quicknes
|
|
genesis-plus-gx
|
|
]
|
|
)
|
|
);
|
|
in
|
|
{
|
|
environment.systemPackages = [
|
|
retroarchWithCores
|
|
];
|
|
}
|