Add nvim plugin and update vpn

This commit is contained in:
2024-08-31 13:43:06 -05:00
parent 5128e70e35
commit d9c523cd53
16 changed files with 207 additions and 25 deletions

View File

@@ -0,0 +1,19 @@
{ lib
, pkgs
, config
, ...
}:
with lib; let
cfg = config.simmer.school;
extraCerts = [ ./incommon-rsa-ca2.pem ];
citrix = pkgs.citrix_workspace_23_09_0.override { inherit extraCerts; };
in
{
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
xournalpp
libreoffice
] ++ optional cfg.citrix citrix;
};
}