2024-02-25 12:04:29 +00:00
|
|
|
# All of the extra module arguments to be passed as part of NixVim module.
|
2024-02-25 14:27:05 +00:00
|
|
|
{ options, config, lib, pkgs, ... }:
|
2024-02-25 12:04:29 +00:00
|
|
|
|
|
|
|
let
|
2024-02-25 14:27:05 +00:00
|
|
|
foodogsquaredLib = import ../../../lib { inherit pkgs; };
|
2024-02-25 12:04:29 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
_module.args.foodogsquaredLib =
|
2024-03-01 10:09:47 +00:00
|
|
|
foodogsquaredLib.extend (final: prev: {
|
2024-03-03 08:39:32 +00:00
|
|
|
nixvim = import ../../../lib/nixvim.nix { inherit pkgs lib; self = final; };
|
2024-03-01 10:09:47 +00:00
|
|
|
});
|
2024-02-25 12:04:29 +00:00
|
|
|
}
|