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