More Jupiter adjustments

This commit is contained in:
Bun 2025-04-28 03:54:22 -04:00
parent 6670e7bb0c
commit 5cdd5989dd
9 changed files with 31 additions and 47 deletions

View file

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