fix(options): move neovim enable option to its module

This commit is contained in:
2026-02-11 17:54:52 +01:00
parent 36b25b2b61
commit f5df607a4d
2 changed files with 7 additions and 6 deletions
+1 -6
View File
@@ -12,12 +12,7 @@
graphical = lib.mkOption {
type = bool;
default = true;
description = "Enable GUI features and programs";
};
neovim = lib.mkOption {
type = bool;
default = true;
description = "Enable neovim";
description = "Whether to enable GUI features and programs.";
};
};
}