From 196ca263d6a29e726ef81541c619469e4fb153d9 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 6 Aug 2023 20:40:40 +0700 Subject: [PATCH] overlays/steam: add openssl1.1 for terraria --- hosts/hyacinth/default.nix | 4 ++++ overlays/steam.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index c0a9921..2ca6ebe 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -57,4 +57,8 @@ xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; services.printing.enable = true; services.printing.drivers = [ pkgs.epson-escpr pkgs.me.epson-201112j ]; + + nixpkgs.config.permittedInsecurePackages = [ + "openssl-1.1.1u" + ]; } diff --git a/overlays/steam.nix b/overlays/steam.nix index d3514f5..5478dba 100644 --- a/overlays/steam.nix +++ b/overlays/steam.nix @@ -5,5 +5,9 @@ self: super: { keyutils gamescope ]; + + extraLibraries = pkgs: with pkgs; [ + openssl_1_1 + ]; }; }