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