aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/emulators.nix
blob: d78cd4b50b3dd3100debbb8d1b29569db94f2c62 (plain)
1
2
3
4
5
6
7
8
9
10
{
  flake.modules.homeManager.emulators = { pkgs, ... }: {
    home.packages = with pkgs; [
      steam-rom-manager
      pcsx2
      rpcs3
      ryubing
    ];
  };
}