nix-community.nixvim/wrappers/modules/nixos.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
189 B
Nix
Raw Normal View History

2024-07-02 15:06:39 +01:00
{ lib, ... }:
{
options = {
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
};
imports = [ ./enable.nix ];
config = {
wrapRc = lib.mkForce true;
};
}