From c621faf09a8a8d3612006161f2b1024a99fd9d27 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Tue, 18 Nov 2025 16:34:35 +0100 Subject: [PATCH] games syntac fix --- home-modules/games.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home-modules/games.nix b/home-modules/games.nix index 37cb74d..1cb3912 100644 --- a/home-modules/games.nix +++ b/home-modules/games.nix @@ -3,15 +3,15 @@ packages = (with pkgs; [ unstable.protonup-ng unstable.mangohud - ] ++ (if hyper.host == "NxNORTH" then [ + ]) ++ (if hyper.host == "NxNORTH" then (with pkgs; [ unstable.prismlauncher heroic # mindustry-wayland - ] else if hyper.host == "NxXPS" then [ + ]) else if hyper.host == "NxXPS" then (with pkgs; [ heroic - ] else if hyper.host == "NxACE" then [ + ]) else if hyper.host == "NxACE" then (with pkgs; [ heroic - ] else [])); + ]) else []); sessionVariables.STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d"; };