14 lines
183 B
Nix
14 lines
183 B
Nix
# Configuration for
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# Retro Gaming Packages
|
|
environment.systemPackages = with pkgs; [
|
|
emulationstation
|
|
libretro.stella
|
|
retroarch
|
|
];
|
|
}
|