1
0
Fork 0

retroarch

This commit is contained in:
Lukas Wurzinger 2025-07-02 22:51:14 +02:00
parent 11c5757aa3
commit e1bc1f1252
No known key found for this signature in database

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.systemPackages =
let
retroarch = pkgs.retroarch.withCores (cores: [
cores.parallel-n64
cores.dolphin
]);
in
[
retroarch
];
}