NixOS-Configs/home/work/citrix.nix
2024-06-15 12:00:45 -05:00

11 lines
203 B
Nix

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