modules/nixpkgs: remove pkgs default text

This commit is contained in:
Matt Sturgeon 2024-12-23 17:01:02 +00:00
parent 3172e48dbb
commit 51474292cd
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -34,20 +34,6 @@ in
{
options.nixpkgs = {
pkgs = lib.mkOption {
# TODO:
# defaultText = lib.literalExpression ''
# import "''${nixos}/.." {
# inherit (cfg) config overlays localSystem crossSystem;
# }
# '';
defaultText = lib.literalMD ''
If `useGlobalPackages` is true, `pkgs` is inherited from your host config
(i.e. NixOS, home-manager, or nix-darwin).
Or the `pkgs` supplied to `makeNixvimWithModule` when building a standalone nixvim.
> [!CAUTION]
> This default will be removed in a future version of nixvim
'';
type = lib.types.pkgs // {
description = "An evaluation of Nixpkgs; the top level attribute set of packages";
};