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