From 1bc97864a1195c3800e7eadfd853bb90ea5cff27 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Mon, 23 Dec 2024 17:01:02 +0000 Subject: [PATCH] modules/nixpkgs: remove `pkgs` default text --- modules/top-level/nixpkgs.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/modules/top-level/nixpkgs.nix b/modules/top-level/nixpkgs.nix index cbe29fe1a..61366d761 100644 --- a/modules/top-level/nixpkgs.nix +++ b/modules/top-level/nixpkgs.nix @@ -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"; };