organizing config and getting rid of withs as much as possible
This commit is contained in:
parent
358d57e8eb
commit
3a31a8b5ee
12 changed files with 142 additions and 57 deletions
|
@ -1,17 +1,16 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.wyrdgard;
|
||||
let
|
||||
inherit(lib) mkIf;
|
||||
inherit(lib.wyrdgard) mkBoolOpt;
|
||||
cfg = config.wyrdgard.apps.cli-apps.nixvim;
|
||||
in
|
||||
{
|
||||
options.wyrdgard.apps.cli-apps.nixvim = with types; {
|
||||
options.wyrdgard.apps.cli-apps.nixvim = {
|
||||
enable = mkBoolOpt true "Whether to enable nixvim or not (Default true)";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue