nixos-config/modules/home/programs/misc/gaming/emulators/default.nix

12 lines
178 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
home.packages = with pkgs; lib.mkIf config.home.gaming.enable [
2024-10-09 03:36:08 -04:00
dolphin-emu
cemu
ryujinx
lime3ds
2024-10-09 03:36:08 -04:00
duckstation
pcsx2
];
}