home | add Citrix configs

This commit is contained in:
Don Harper 2023-10-15 20:45:54 -05:00
parent d8ee0b915a
commit 975b448c41
10 changed files with 901 additions and 1 deletions

9
home/citrix.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ citrix_workspace ];
home.file."ICAClient" = {
recursive = true;
source = ./files/citrix;
target = ".ICAClient";
};
}