citrix update to new version and removed dependency junk

This commit is contained in:
Don Harper 2026-05-06 22:43:19 -05:00
parent f94fccf8ed
commit d4a980e712
3 changed files with 2 additions and 9 deletions

View file

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