Add user-level nixpkgs.allowInsecure and permittedInsecurePackages for Citrix home manager build
This commit is contained in:
parent
0c5f0e56e1
commit
a3d157656a
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue