Add user-level nixpkgs.allowInsecure and permittedInsecurePackages for Citrix home manager build

This commit is contained in:
Don Harper 2026-05-05 16:51:56 -05:00
parent 0c5f0e56e1
commit a3d157656a

View file

@ -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;