Remove citrix

This commit is contained in:
Charlotte Van Petegem 2022-01-11 23:10:54 +01:00
parent 2be6bd1cac
commit a5ce04a70d
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 0 additions and 22 deletions

View file

@ -1,20 +0,0 @@
{ config, lib, ... }:
{
options.chvp.work.citrix.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.work.citrix.enable {
chvp.base = {
nix.unfreePackages = [ "citrix-workspace" ];
zfs.homeLinks = [
{ path = ".ICAClient"; type = "data"; }
];
};
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ citrix_workspace ];
};
};
}

View file

@ -2,7 +2,6 @@
{
imports = [
./citrix
./mounts
./teams
./vpn
@ -18,7 +17,6 @@
chvp = {
development.enable = true;
work = {
citrix.enable = lib.mkDefault false;
mounts.enable = lib.mkDefault true;
teams.enable = lib.mkDefault true;
vpn.enable = lib.mkDefault true;