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