2024-03-10 10:50:58 -07:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
|
|
|
|
let cfg = config.modules.gaming.emulation;
|
|
|
|
in {
|
|
|
|
options.modules.gaming.emulation.enable = lib.mkEnableOption "emulation";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-10-21 20:57:33 -07:00
|
|
|
ryujinx # Fuck Nintendo!
|
2024-10-11 17:00:24 -07:00
|
|
|
sudachi # Nintendo Switch emulator written in C++.
|
2024-10-21 20:57:33 -07:00
|
|
|
yuzu # Fuck Nintendo!
|
2024-04-21 10:37:47 -07:00
|
|
|
dolphin-emu # GameCube and Wii emulator.
|
|
|
|
ppsspp # PSP emulator.
|
|
|
|
mgba # Game Boy Advance emulator.
|
2024-03-10 10:50:58 -07:00
|
|
|
(retroarch.override {
|
|
|
|
cores = with libretro; [
|
2024-04-21 10:37:47 -07:00
|
|
|
nestopia # Nintendo Entertainment System (NES) emulator.
|
|
|
|
snes9x # Super Nintendo Entertainment System (SNES) emulator.
|
|
|
|
mgba # Game Boy Advance emulator.
|
|
|
|
melonds # Nintendo DS emulator.
|
2024-10-21 20:57:33 -07:00
|
|
|
citra # Fuck Nintendo!
|
2024-03-10 10:50:58 -07:00
|
|
|
];
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|