12 lines
179 B
Nix
12 lines
179 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
|
dolphin-emu
|
|
cemu
|
|
ryujinx
|
|
lime3ds
|
|
duckstation
|
|
pcsx2
|
|
];
|
|
}
|