Stop using unstable packages where they aren't necessary

This commit is contained in:
Bun 2025-05-29 17:36:02 -04:00
parent a78189de25
commit f49316e600
2 changed files with 13 additions and 15 deletions

View file

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