From 6ac1900a1a05b4e2c24708047a636ce81d6a6702 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Thu, 13 Jul 2023 17:32:13 +0200 Subject: [PATCH] add openssl to insecure package --- hosts/nb-epicenter/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/nb-epicenter/configuration.nix b/hosts/nb-epicenter/configuration.nix index e5cafea..fe5a67a 100644 --- a/hosts/nb-epicenter/configuration.nix +++ b/hosts/nb-epicenter/configuration.nix @@ -44,6 +44,10 @@ # allow hibernation security.protectKernelImage = false; + nixpkgs.config.permittedInsecurePackages = [ + "openssl-1.1.1u" + ]; + sops.defaultSopsFile = ./secrets.yaml; sops.age.keyFile = "/var/lib/sops-nix/key.txt"; sops.age.generateKey = true;