12 lines
255 B
Nix
12 lines
255 B
Nix
{ config, lib, pkgs, pkgsUnstable, ... }:
|
|
{
|
|
config = lib.mkIf config.home.desktop.enable {
|
|
home.packages = (with pkgs; [
|
|
cemu
|
|
dolphin-emu-beta
|
|
duckstation
|
|
pcsx2
|
|
ryujinx
|
|
]) ++ (with pkgsUnstable; [ azahar ]);
|
|
};
|
|
}
|