NixOS-Configs/home/gui/citrix.nix
2024-01-06 14:02:54 -06:00

9 lines
189 B
Nix

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