NixOS-Configs/home/work/citrix.nix
2024-06-30 09:47:45 -05:00

15 lines
211 B
Nix

{
config,
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [
citrix_workspace
];
home.file."ICAClient" = {
recursive = true;
source = ./files/citrix;
target = ".ICAClient";
};
}