NixOS-Configs/home/gui/citrix.nix
2024-03-02 08:54:04 -06:00

12 lines
206 B
Nix

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