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, pkgs, pkgsUnstable, ... }:
{ {
config = lib.mkIf config.home.desktop.enable { config = lib.mkIf config.home.gaming.enable {
home.packages = (with pkgs; [ home.packages = (with pkgs; [
cemu cemu
dolphin-emu-beta dolphin-emu-beta
duckstation duckstation
pcsx2 pcsx2
ryujinx ]) ++ (with pkgsUnstable; [
]) ++ (with pkgsUnstable; [ azahar ]); azahar
ryubing
]);
}; };
} }