1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

docs: change lib.fetchGit to builtins.fetchGit

This commit is contained in:
Pedro Alves 2023-02-20 21:01:32 +00:00
parent 36f6fdefda
commit baf702c03d

View file

@ -34,7 +34,7 @@ To install it, edit your home-manager (or NixOS) configuration:
```nix
{ pkgs, lib, ... }:
let
nixvim = import (lib.fetchGit {
nixvim = import (builtins.fetchGit {
url = "https://github.com/pta2002/nixvim";
});
in