citra build from archive

This commit is contained in:
2024-06-13 23:45:27 -06:00
parent dd31726028
commit b9500298c2
4 changed files with 232 additions and 23 deletions

View File

@@ -12,29 +12,31 @@
platformOptimizations.enable = true;
};
};
users.users.jawz.packages =
let polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
in (with pkgs; [
mangohud # fps & stats overlay
lutris # games launcher & emulator hub
cartridges # games launcher
gamemode # optimizes linux to have better gaming performance
heroic # install epic games
protonup-qt # update proton-ge
#minecraft # minecraft official launcher
ns-usbloader # load games into my switch
# grapejuice # roblox manager
users.users.jawz.packages = let
polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
citra-nightly =
pkgs.callPackage ../../pkgs/citra/default.nix { branch = "nightly"; };
in (with pkgs; [
mangohud # fps & stats overlay
lutris # games launcher & emulator hub
cartridges # games launcher
gamemode # optimizes linux to have better gaming performance
heroic # install epic games
protonup-qt # update proton-ge
#minecraft # minecraft official launcher
ns-usbloader # load games into my switch
# grapejuice # roblox manager
# emulators
rpcs3 # ps3 emulator
pcsx2 # ps2 emulator
cemu # wii u emulator
dolphin-emu # wii emulator
#citra-nightly # 3Ds emulator
snes9x-gtk # snes emulator
ryujinx # switch emulator
]) ++ [
polymc # minecraft launcher with mod support
];
# emulators
rpcs3 # ps3 emulator
pcsx2 # ps2 emulator
cemu # wii u emulator
dolphin-emu # wii emulator
snes9x-gtk # snes emulator
ryujinx # switch emulator
]) ++ [
citra-nightly # 3Ds emulator
polymc # minecraft launcher with mod support
];
};
}