1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/flake/overlays.nix
2025-01-19 12:56:24 +01:00

18 lines
308 B
Nix

{ inputs, ... }:
{
imports = [ inputs.flake-parts.flakeModules.easyOverlay ];
perSystem =
{
config,
pkgs,
final,
...
}:
{
overlayAttrs = {
nixvim = {
inherit (config.legacyPackages) makeNixvim makeNixvimWithModule;
};
};
};
}