13 lines
246 B
Nix
13 lines
246 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
inputs.nixpkgs-2311.opencv
|
|
#opencv
|
|
citrix_workspace
|
|
];
|
|
home.file."ICAClient" = {
|
|
recursive = true;
|
|
source = ./files/citrix;
|
|
target = ".ICAClient";
|
|
};
|
|
}
|