mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
20 lines
302 B
Nix
20 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;
|
|
}
|
|
)
|
|
);
|
|
}
|