From 8dfecd463aece987362fc0b62cbfc360c8a0a3f6 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 13 Jul 2024 11:04:11 +0100 Subject: [PATCH] Uninstall retroarch Remove Steam support from Lutris --- home/games/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/home/games/default.nix b/home/games/default.nix index b55fb02b..5acf67a2 100644 --- a/home/games/default.nix +++ b/home/games/default.nix @@ -1,11 +1,10 @@ {pkgs, ...}: { home.packages = with pkgs; [ - wineWowPackages.waylandFull - cartridges - lutris prismlauncher - (retroarch.override { - cores = with libretro; [dolphin mgba mupen64plus]; + cartridges + (lutris.override { + steamSupport = false; + extraPkgs = pkgs: with pkgs; [wineWowPackages.waylandFull]; }) ]; }