diff --git a/hosts/skadi/home.nix b/hosts/skadi/home.nix index 0198159..b6e1a73 100644 --- a/hosts/skadi/home.nix +++ b/hosts/skadi/home.nix @@ -42,6 +42,7 @@ crony.shell-additions.enable = true; crony.home-secrets.enable = true; crony.restic.enable = true; + crony.emulators.enable = true; # DO NOT CHANGE ALSO home.stateVersion = "24.11"; # Please read the comment before changing. diff --git a/modules/linux/home-manager/emulators.nix b/modules/linux/home-manager/emulators.nix index 7d491a1..175b83f 100644 --- a/modules/linux/home-manager/emulators.nix +++ b/modules/linux/home-manager/emulators.nix @@ -10,21 +10,21 @@ config = lib.mkIf config.crony.emulators.enable { home.packages = with pkgs; [ - (retroarch.withCores ( - cores: - with cores; [ - beetle-saturn - mupen64plus - flycast - desmume - ] - )) - duckstation - pcsx2 - dolphin-emu + # (retroarch.withCores ( + # cores: + # with cores; [ + # beetle-saturn + # mupen64plus + # flycast + # desmume + # ] + # )) + # duckstation + # pcsx2 + # dolphin-emu rpcs3 - mame-tools - steam-rom-manager + # mame-tools + # steam-rom-manager ]; }; }