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

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

22 lines
352 B
Nix
Raw Normal View History

{
perSystem =
{
pkgs,
config,
makeNixvimWithModule,
...
}:
{
legacyPackages = rec {
inherit makeNixvimWithModule;
makeNixvim =
configuration:
makeNixvimWithModule {
module = {
config = configuration;
2024-05-05 19:39:35 +02:00
};
};
};
};
}