1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/flake-modules/lib.nix
2024-01-06 00:05:13 +01:00

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;
}
)
);
}