From 8e760df6c8a5392e304af679b656853009a6be13 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 25 Mar 2024 18:34:33 +0100 Subject: [PATCH] That didn't work, force programs.steam instead --- nixos/hosts/shodan/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index 56f7231..d7bcda3 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -117,11 +117,11 @@ jovian.hardware.has.amd.gpu = true; - programs.steam = { + programs.steam = lib.mkForce { 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 - package = lib.mkForce pkgs.steam.override { + package = pkgs.steam.override { extraProfile = ''export LD_PRELOAD=${pkgs.extest}/lib/libextest.so:$LD_PRELOAD''; }; };