mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
This commit only adds Home-Manager specific options, we should add sections for the different kind of modules too. This is _not_ added to the man docs, as it is more complex. If need arises we could look into how to do it.
7 lines
145 B
Nix
7 lines
145 B
Nix
{lib}:
|
|
with lib; {
|
|
options = {
|
|
enable = mkEnableOption "nixvim";
|
|
defaultEditor = mkEnableOption "nixvim as the default editor";
|
|
};
|
|
}
|