nix/modules/retro/default.nix

14 lines
223 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ pkgs, config, ...}:
{
environment.systemPackages = with pkgs; [
emulationstation-de
retroarchFull
dolphin-emu
];
nixpkgs.config.permittedInsecurePackages = [
"freeimage-unstable-2021-11-01"
];
}