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 + ]; }; }