allow citrix to install
This commit is contained in:
parent
75b5d23a4c
commit
3b7139e09a
1 changed files with 6 additions and 1 deletions
|
|
@ -7,16 +7,21 @@ with lib; let
|
|||
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 {
|
||||
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 = {
|
||||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue