From 119ef9fa60ff371612e100af8fc700bd7cfc1e5b Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Thu, 12 Sep 2024 15:53:40 +0200 Subject: [PATCH] pinwheel: Remove `retroarch` --- hosts/pinwheel/modules/games/default.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/hosts/pinwheel/modules/games/default.nix b/hosts/pinwheel/modules/games/default.nix index 38e5f03..17e072a 100644 --- a/hosts/pinwheel/modules/games/default.nix +++ b/hosts/pinwheel/modules/games/default.nix @@ -1,16 +1,6 @@ { pkgs, ... }: { home-manager.users.alex = { - home.packages = [ - pkgs.brogue-ce - - (pkgs.retroarch.override { - cores = [ - pkgs.libretro.genesis-plus-gx - pkgs.libretro.snes9x - pkgs.libretro.dolphin - ]; - }) - ]; + home.packages = [ pkgs.brogue-ce ]; }; }