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