nixos-config/common/gui/retroarch.nix
gwg313 58f06d6729
lots of stuff
Signed-off-by: gwg313 <gwg313@pm.me>
2025-06-30 18:13:14 -04:00

18 lines
257 B
Nix

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