mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 03:34:31 +02:00
18 lines
304 B
Nix
18 lines
304 B
Nix
{
|
|
perSystem = {
|
|
pkgs,
|
|
config,
|
|
makeNixvimWithModule,
|
|
...
|
|
}: {
|
|
legacyPackages = rec {
|
|
inherit makeNixvimWithModule;
|
|
makeNixvim = configuration:
|
|
makeNixvimWithModule {
|
|
module = {
|
|
config = configuration;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|