commit 00a68c3e9eb27993c6d7c1d9f1b294bcc3f6c8cf parent 67d4705bb60f9b3f297c7ec677b5cd5479ea07e2 Author: breadcat <breadcat@users.noreply.github.com> Date: Sun, 24 Aug 2025 12:50:28 +0100 Disable all entries until needed later Diffstat:
M | common/emulators.nix | | | 45 | +++++++++++++++++++++++++-------------------- |
1 file changed, 25 insertions(+), 20 deletions(-)
diff --git a/common/emulators.nix b/common/emulators.nix @@ -2,26 +2,31 @@ { environment.systemPackages = with pkgs; [ # Emulators - blastem - cemu - dolphin-emu - duckstation - flycast - gopher64 - melonDS - mgba - pcsx2 - ppsspp - punes - rpcs3 - sameboy - snes9x - xemu + # blastem + # cemu + # dolphin-emu + # duckstation + # flycast + # gopher64 + # melonDS + # mesen + # mgba + # pcsx2 + # ppsspp + # rpcs3 + # sameboy + # snes9x + # xemu # Game engines - corsix-th - eduke32 - openra - openrct2 - openttd + # corsix-th + # eduke32 + # openra + # openrct2 + # openttd + # Frontend + # pegasus-frontend + # Tools + # mame-tools + # moonlight-qt ]; }