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

@@ -15,5 +15,6 @@
./openssh.nix
./system.nix
./laptop.nix
./school.nix
];
}

View File

@@ -0,0 +1,23 @@
{ lib
, pkgs
, ...
}:
with lib;
let
cfg = config.simmer.school;
in
{
options.simmer.school = {
enable = mkOption {
description = "Whether to install default software for school";
type = types.bool;
default = false;
};
citrix = mkOption {
description = "Whether to install and setup citrix";
type = types.bool;
default = false;
};
};
}