From 23693d726806bc3c6995fc7ccaca6a930e552fc4 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 19 May 2025 13:19:42 +1000 Subject: [PATCH] overlays/steam: remove openssl 1.1.1 --- hosts/anemone/default.nix | 5 ----- hosts/hyacinth/default.nix | 5 ----- overlays/steam.nix | 4 ---- 3 files changed, 14 deletions(-) diff --git a/hosts/anemone/default.nix b/hosts/anemone/default.nix index c0c31c7..77b07a7 100644 --- a/hosts/anemone/default.nix +++ b/hosts/anemone/default.nix @@ -44,11 +44,6 @@ hidpi = true; }; - # For steam fhs-env - nixpkgs.config.permittedInsecurePackages = [ - "openssl-1.1.1w" - ]; - programs.wireshark = { enable = true; package = pkgs.wireshark; diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index 9ea9a4c..ff21b6b 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -43,9 +43,4 @@ systemd.services.nix-daemon.environment.TMPDIR = "/nix/tmp"; services.jenkins.enable = true; - - # For steam fhs-env - nixpkgs.config.permittedInsecurePackages = [ - "openssl-1.1.1w" - ]; } diff --git a/overlays/steam.nix b/overlays/steam.nix index 5478dba..d3514f5 100644 --- a/overlays/steam.nix +++ b/overlays/steam.nix @@ -5,9 +5,5 @@ self: super: { keyutils gamescope ]; - - extraLibraries = pkgs: with pkgs; [ - openssl_1_1 - ]; }; }