mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
21 lines
302 B
Nix
21 lines
302 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
withSystem,
|
||
|
...
|
||
|
}: {
|
||
|
flake.lib = lib.genAttrs config.systems (
|
||
|
lib.flip withSystem (
|
||
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
import ../lib {
|
||
|
inherit pkgs lib;
|
||
|
inherit (config.legacyPackages) makeNixvim;
|
||
|
}
|
||
|
)
|
||
|
);
|
||
|
}
|