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

22 lines
352 B
Nix
Raw Normal View History

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