nix-community.nixvim/flake/overlays.nix

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

19 lines
308 B
Nix
Raw Permalink Normal View History

{ inputs, ... }:
{
imports = [ inputs.flake-parts.flakeModules.easyOverlay ];
perSystem =
{
config,
pkgs,
final,
...
}:
{
overlayAttrs = {
nixvim = {
inherit (config.legacyPackages) makeNixvim makeNixvimWithModule;
};
};
};
}