1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-29 05:31:05 +01:00
nixvim/flake-modules/legacy-packages.nix
2024-05-05 22:00:40 +02:00

21 lines
352 B
Nix

{
perSystem =
{
pkgs,
config,
makeNixvimWithModule,
...
}:
{
legacyPackages = rec {
inherit makeNixvimWithModule;
makeNixvim =
configuration:
makeNixvimWithModule {
module = {
config = configuration;
};
};
};
};
}