RetroArch: Difference between revisions

imported>Zaechus
m improve cores example
imported>Zaechus
mNo edit summary
Line 3: Line 3:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
    (retroarch.override {
  (retroarch.override {
      cores = with libretro; [
    cores = with libretro; [
        genesis-plus-gx
      genesis-plus-gx
        snes9x
      snes9x
        beetle-psx-hw
      beetle-psx-hw
      ];
    ];
    })
  })
];
];
</syntaxhighlight>
</syntaxhighlight>