Fix fetchGit instructions

This commit is contained in:
Javier Candeira 2020-10-13 22:55:46 +11:00
parent 7234b11dff
commit d43b95a86e
1 changed files with 2 additions and 2 deletions

View File

@ -48,13 +48,13 @@ There is also experimental flake support. In your `/etc/nixos/flake.nix` add the
```
### Using fetchgit
### Using fetchGit
You can fetch the git repository directly:
```nix
imports = [
"${builtins.fetchgit { url = "https://github.com/NixOS/nixos-hardware.git"; }}/lenovo/thinkpad/x220"
"${builtins.fetchGit { url = "https://github.com/NixOS/nixos-hardware.git"; }}/lenovo/thinkpad/x220"
];
```