16 lines
227 B
Nix
16 lines
227 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
home.packages = with pkgs; [
|
||
|
wineWowPackages.waylandFull
|
||
|
lutris
|
||
|
prismlauncher
|
||
|
(retroarch.override {
|
||
|
cores = with libretro; [dolphin mgba mupen64plus];
|
||
|
})
|
||
|
];
|
||
|
}
|