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

8 lines
124 B
Nix
Raw Normal View History

2024-05-05 19:39:35 +02:00
{
perSystem =
2024-07-08 07:32:53 +01:00
{ pkgs, ... }:
2024-05-05 19:39:35 +02:00
{
2024-07-08 07:32:53 +01:00
_module.args.helpers = import ../lib/helpers.nix { inherit pkgs; };
2024-05-05 19:39:35 +02:00
};
}