NixOS-Config/modules/home/programs/misc/gaming/emulators/default.nix

12 lines
144 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ pkgs, lib, config, ... }:
{
home.packages = with pkgs; [
dolphin-emu
cemu
ryujinx
duckstation
pcsx2
2024-10-15 02:40:43 -04:00
#lime3ds
2024-10-09 03:36:08 -04:00
];
}