From a3d157656a7c90637993b4b1aa1e889aec43a3d1 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 5 May 2026 16:51:56 -0500 Subject: [PATCH] Add user-level nixpkgs.allowInsecure and permittedInsecurePackages for Citrix home manager build --- home/work/citrix.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/work/citrix.nix b/home/work/citrix.nix index 3b59981..9a285ff 100644 --- a/home/work/citrix.nix +++ b/home/work/citrix.nix @@ -13,6 +13,11 @@ in { options.roles.citrix = {enable = lib.mkEnableOption "citrix tools";}; config = mkIf cfg.enable { home-manager.users.don.home.packages = with citrixPkgs; [citrix_workspace]; + home-manager.users.don.nixpkgs.config = { + allowUnfree = true; + allowInsecure = true; + permittedInsecurePackages = ["libsoup-2.74.3"]; + }; home-manager.users.don.home.file."ICAClient" = { recursive = true; source = ./files/citrix;