mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
16 lines
245 B
Nix
16 lines
245 B
Nix
|
{getHelpers, ...}: {
|
||
|
_module.args.getHelpers = pkgs:
|
||
|
import ../lib/helpers.nix {
|
||
|
inherit pkgs;
|
||
|
inherit (pkgs) lib;
|
||
|
};
|
||
|
|
||
|
perSystem = {
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
_module.args.helpers = getHelpers pkgs;
|
||
|
};
|
||
|
}
|