mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
12 lines
294 B
Nix
12 lines
294 B
Nix
|
# All of the extra module arguments to be passed as part of NixVim module.
|
||
|
{ options, lib, ... }:
|
||
|
|
||
|
let
|
||
|
foodogsquaredLib = import ../../../lib { inherit lib; };
|
||
|
in
|
||
|
{
|
||
|
_module.args.foodogsquaredLib =
|
||
|
foodogsquaredLib.extend (self:
|
||
|
import ../../../lib/nixvim.nix { inherit lib; });
|
||
|
}
|