From ad7384f5b170f68c773708e9712dfbf4f7195dd2 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Fri, 16 Feb 2024 12:20:08 +0100 Subject: [PATCH] Add gaming launchers lutris & heroic --- home/features/games/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home/features/games/default.nix b/home/features/games/default.nix index 2ab74a8..c446968 100644 --- a/home/features/games/default.nix +++ b/home/features/games/default.nix @@ -1,4 +1,11 @@ {pkgs, ...}: { - imports = [ + home.packages = with pkgs; [ + heroic + (lutris.override { + extraLibraries = pkgs: [ + wine + wineWowPackages.stable + ]; + }) ]; }