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