diff --git a/modules/home/retroarch.nix b/modules/home/retroarch.nix index 09c2409..4bee7d2 100644 --- a/modules/home/retroarch.nix +++ b/modules/home/retroarch.nix @@ -1,12 +1,11 @@ {pkgs, ...}: { home.packages = with pkgs; [ - (retroarch.override { - cores = with libretro; [ + (retroarch.withCores (cores: + with cores; [ fceumm gambatte mgba snes9x - ]; - }) + ])) ]; }