NixOS-Configs/home/citrix.nix
2023-10-15 20:45:54 -05:00

9 lines
189 B
Nix

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