nixos-config/modules/home/programs/misc/gaming/emulators/default.nix
2025-04-28 03:54:22 -04:00

12 lines
255 B
Nix

{ config, lib, pkgs, pkgsUnstable, ... }:
{
config = lib.mkIf config.home.desktop.enable {
home.packages = (with pkgs; [
cemu
dolphin-emu-beta
duckstation
pcsx2
ryujinx
]) ++ (with pkgsUnstable; [ azahar ]);
};
}