allow citrix to install

This commit is contained in:
Don Harper 2026-05-06 17:51:12 -05:00
parent 75b5d23a4c
commit 3b7139e09a

View file

@ -7,16 +7,21 @@ with lib; let
allowUnfree = true; allowUnfree = true;
allowInsecure = true; allowInsecure = true;
permittedInsecurePackages = ["libsoup-2.74.3"]; permittedInsecurePackages = ["libsoup-2.74.3"];
allowInsecurePredicate = pkg:
builtins.elem (lib.getName pkg) ["libsoup-2.74.3"];
}; };
}; };
in { in {
options.roles.citrix = {enable = lib.mkEnableOption "citrix tools";}; options.roles.citrix = {enable = lib.mkEnableOption "citrix tools";};
config = mkIf cfg.enable { config = mkIf cfg.enable {
home-manager.users.don.home.packages = with citrixPkgs; [citrix_workspace]; nixpkgs.config.permittedInsecurePackages = ["libsoup-2.74.3"];
home-manager.users.don.home.packages = with citrixPkgs; [ citrix_workspace ];
home-manager.users.don.nixpkgs.config = { home-manager.users.don.nixpkgs.config = {
allowUnfree = true; allowUnfree = true;
allowInsecure = true; allowInsecure = true;
permittedInsecurePackages = ["libsoup-2.74.3"]; permittedInsecurePackages = ["libsoup-2.74.3"];
allowInsecurePredicate = pkg:
builtins.elem (lib.getName pkg) ["libsoup-2.74.3"];
}; };
home-manager.users.don.home.file."ICAClient" = { home-manager.users.don.home.file."ICAClient" = {
recursive = true; recursive = true;