blob: 1c71db7aafcfe1af8fb3d15df9c29cab86e0aa9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{lib, ...}: {
options.seth = with lib; {
devel.enable = mkOption {
type = types.bool;
default = false;
description = "install development packages for neovim lsp";
};
desktop = mkOption {
type = types.str;
default = "";
description = "choose a desktop configuration";
};
standalone = mkOption {
type = types.bool;
default = false;
description = "set to true if using home-manager standalone";
};
};
}
|