mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
12 lines
189 B
Nix
12 lines
189 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
|
|
};
|
|
|
|
imports = [ ./enable.nix ];
|
|
|
|
config = {
|
|
wrapRc = lib.mkForce true;
|
|
};
|
|
}
|