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