From 5a65ab7b78d08b983a42a3ed65464e1e59803f67 Mon Sep 17 00:00:00 2001 From: Bun Date: Wed, 30 Apr 2025 23:07:31 -0400 Subject: [PATCH] Update emulators list to be under gaming properly --- modules/home/programs/misc/gaming/emulators/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/home/programs/misc/gaming/emulators/default.nix b/modules/home/programs/misc/gaming/emulators/default.nix index e78c9b9a..98f32035 100644 --- a/modules/home/programs/misc/gaming/emulators/default.nix +++ b/modules/home/programs/misc/gaming/emulators/default.nix @@ -1,12 +1,14 @@ { config, lib, pkgs, pkgsUnstable, ... }: { - config = lib.mkIf config.home.desktop.enable { + config = lib.mkIf config.home.gaming.enable { home.packages = (with pkgs; [ cemu dolphin-emu-beta duckstation pcsx2 - ryujinx - ]) ++ (with pkgsUnstable; [ azahar ]); + ]) ++ (with pkgsUnstable; [ + azahar + ryubing + ]); }; }