nix-community.nixvim/flake/legacy-packages.nix

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

20 lines
358 B
Nix
Raw Normal View History

{ helpers, ... }:
{
perSystem =
{
makeNixvimWithModule,
system,
...
}:
{
legacyPackages = rec {
inherit makeNixvimWithModule;
makeNixvim = module: makeNixvimWithModule { inherit module; };
nixvimConfiguration = helpers.modules.evalNixvim {
inherit system;
};
};
};
}