feat(desktop): setup rpcs3.

This commit is contained in:
CronyAkatsuki 2025-10-06 23:08:11 +02:00
parent 4fca123552
commit 4afb18bbb1
2 changed files with 15 additions and 14 deletions

View file

@ -42,6 +42,7 @@
crony.shell-additions.enable = true; crony.shell-additions.enable = true;
crony.home-secrets.enable = true; crony.home-secrets.enable = true;
crony.restic.enable = true; crony.restic.enable = true;
crony.emulators.enable = true;
# DO NOT CHANGE ALSO # DO NOT CHANGE ALSO
home.stateVersion = "24.11"; # Please read the comment before changing. home.stateVersion = "24.11"; # Please read the comment before changing.

View file

@ -10,21 +10,21 @@
config = lib.mkIf config.crony.emulators.enable { config = lib.mkIf config.crony.emulators.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
(retroarch.withCores ( # (retroarch.withCores (
cores: # cores:
with cores; [ # with cores; [
beetle-saturn # beetle-saturn
mupen64plus # mupen64plus
flycast # flycast
desmume # desmume
] # ]
)) # ))
duckstation # duckstation
pcsx2 # pcsx2
dolphin-emu # dolphin-emu
rpcs3 rpcs3
mame-tools # mame-tools
steam-rom-manager # steam-rom-manager
]; ];
}; };
} }