Add nvim plugin and update vpn
This commit is contained in:
@@ -15,5 +15,6 @@
|
||||
./openssh.nix
|
||||
./system.nix
|
||||
./laptop.nix
|
||||
./school.nix
|
||||
];
|
||||
}
|
||||
|
||||
23
modules/options/school.nix
Normal file
23
modules/options/school.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user