nix-community.nixvim/flake-modules/lib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
172 B
Nix
Raw Normal View History

{
config,
lib,
withSystem,
...
}:
{
flake.lib = lib.genAttrs config.systems (
lib.flip withSystem ({ pkgs, ... }: import ../lib { inherit pkgs lib; })
);
}