mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +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; });
|
|
}
|