From 15e04ad65bd6bfc65a2d09237b30a0ed4b06c2a1 Mon Sep 17 00:00:00 2001 From: Malte Tammena Date: Thu, 15 Jul 2021 14:12:24 +0200 Subject: [PATCH] Add openssl to steam (for 'Gods will be watching') --- malte/game-launchers.nix | 2 +- system/helix-texta.nix | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/malte/game-launchers.nix b/malte/game-launchers.nix index d270e79..97ae4ce 100644 --- a/malte/game-launchers.nix +++ b/malte/game-launchers.nix @@ -58,7 +58,7 @@ let in { home.packages = [ # Necessary packages - pkgs.steam-run-native + #pkgs.steam-run-native pkgs.libnotify ] ++ map mkScript games; } diff --git a/system/helix-texta.nix b/system/helix-texta.nix index c2c29a5..8b46c93 100644 --- a/system/helix-texta.nix +++ b/system/helix-texta.nix @@ -140,7 +140,17 @@ in { }; programs.dconf.enable = true; + programs.steam.enable = true; + nixpkgs.config.packageOverrides = pkgs: { + steam = pkgs.steam.override { + extraPkgs = pkgs: [ + pkgs.openssl + ]; + #nativeOnly = true; + }; + }; + programs.sway.enable = true; services.dbus.packages = [ pkgs.gnome3.dconf ]; services.udev.packages = with pkgs; [ yubikey-personalization ];