mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 18:18:59 +00:00
13 lines
372 B
Nix
13 lines
372 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/env-specific/nixvim.nix {
|
|
inherit pkgs lib;
|
|
self = final;
|
|
};
|
|
});
|
|
}
|