14 lines
223 B
Nix
14 lines
223 B
Nix
{ pkgs, config, ...}:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
emulationstation-de
|
|
retroarchFull
|
|
dolphin-emu
|
|
];
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"freeimage-unstable-2021-11-01"
|
|
];
|
|
}
|