From c426807bceeef64d57a980a267e0809b10f756b1 Mon Sep 17 00:00:00 2001 From: Stefan Schwarz Date: Fri, 3 Mar 2023 10:35:53 +0100 Subject: [PATCH] fix(configuration): allow broken kerberos package --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 364eb1e..23c4c58 100644 --- a/configuration.nix +++ b/configuration.nix @@ -32,7 +32,10 @@ services.openssh.enable = true; networking.firewall.enable = true; - nixpkgs.config.permittedInsecurePackages = [ "openssl-1.0.2u" ]; + nixpkgs.config.permittedInsecurePackages = [ + "openssl-1.0.2u" + "python3.10-kerberos-1.3.1" + ]; # removed for mobile working # system.autoUpgrade.enable = true;