mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
15 lines
245 B
Nix
15 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;
|
|
};
|
|
}
|