mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-28 02:34:17 -05:00
Separate `overlay.nix` and `overlay.internal.nix`, to encapsulate the `flake` argument. This allows non-flake users to import `./overlay.nix` without providing a dummy `flake = null` attr. The read-only `config.flake` option is only defined by `evalNixvim` when `lib` is extended using the overlay in Nixvim's flake outputs.
5 lines
113 B
Nix
5 lines
113 B
Nix
# Public non-flake entrypoint for Nixvim's Nixpkgs-lib overlay
|
|
import ./overlay.internal.nix {
|
|
flake = null;
|
|
}
|