mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
Set default to `true`, with a low priority. Home-manager's wrapper sets its own default using `mkOptionDefault`. Clarify using `defaultText`.
8 lines
139 B
Nix
8 lines
139 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
|
|
};
|
|
|
|
imports = [ ./enable.nix ];
|
|
}
|