mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
21 lines
352 B
Nix
21 lines
352 B
Nix
{
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
config,
|
|
makeNixvimWithModule,
|
|
...
|
|
}:
|
|
{
|
|
legacyPackages = rec {
|
|
inherit makeNixvimWithModule;
|
|
makeNixvim =
|
|
configuration:
|
|
makeNixvimWithModule {
|
|
module = {
|
|
config = configuration;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|