mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
13 lines
267 B
Nix
13 lines
267 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [ inputs.flake-parts.flakeModules.easyOverlay ];
|
|
perSystem =
|
|
{ config, ... }:
|
|
{
|
|
overlayAttrs = {
|
|
nixvim = {
|
|
inherit (config.legacyPackages) makeNixvim makeNixvimWithModule;
|
|
};
|
|
};
|
|
};
|
|
}
|