Update emulators list to be under gaming properly

This commit is contained in:
Bun 2025-04-30 23:07:31 -04:00
parent 92fbd87119
commit 5a65ab7b78

View file

@ -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
]);
};
}