From 5325de4da2da0bd4d3fdb4859f5f0735a6c3a3a7 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 09:30:14 +0200 Subject: [PATCH] Fix Retroarch --- modules/home/retroarch.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 - ]; - }) + ])) ]; }