From 122a094b7d483feceebbd123efee9fcb67ef9a91 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 1 Jan 2024 22:39:15 +0100 Subject: [PATCH] Fix steam input for shodan --- nixos/hosts/shodan/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index 9c9c6a5..efa86d3 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -140,12 +140,12 @@ jovian.devices.steamdeck.autoUpdate = true; programs.steam = { - override = { - extraProfile = ''export LD_PRELOAD=${pkgs.extest}/lib/libextest.so:$LD_PRELOAD''; - }; enable = true; remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server + programs.steam.package = pkgs.steam.override { + extraProfile = ''export LD_PRELOAD=${pkgs.extest}/lib/libextest.so:$LD_PRELOAD''; + }; }; hardware.opengl.driSupport32Bit = true; # Enables support for 32bit libs that steam uses