1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-15 15:02:47 +01:00
nixvim/wrappers/modules/hm.nix
traxys 6d1ef5864b
docs: Add a section on module specific options (#1355)
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.
2024-03-30 14:52:32 +01:00

7 lines
145 B
Nix

{lib}:
with lib; {
options = {
enable = mkEnableOption "nixvim";
defaultEditor = mkEnableOption "nixvim as the default editor";
};
}