mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
19 lines
308 B
Nix
19 lines
308 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
imports = [ inputs.flake-parts.flakeModules.easyOverlay ];
|
||
|
perSystem =
|
||
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
final,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
overlayAttrs = {
|
||
|
nixvim = {
|
||
|
inherit (config.legacyPackages) makeNixvim makeNixvimWithModule;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|