nix-community.nixvim/wrappers/modules/nixos.nix
Matt Sturgeon 574ae92a43
wrappers/modules: move enable to shared.nix
We may end up having additional "shared" options and/or config.
2024-10-22 12:31:56 +01:00

8 lines
139 B
Nix

{ lib, ... }:
{
options = {
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
};
imports = [ ./shared.nix ];
}