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

18 lines
285 B
Nix
Raw Permalink Normal View History

{
config,
lib,
withSystem,
...
2024-05-05 19:39:35 +02:00
}:
{
flake.lib = lib.genAttrs config.systems (
lib.flip withSystem (
2024-05-05 19:39:35 +02:00
{ pkgs, config, ... }:
import ../lib {
inherit pkgs lib;
inherit (config.legacyPackages) makeNixvim makeNixvimWithModule;
}
)
);
}