1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-25 22:18:32 +02:00

Merge pull request #195 from candeira/thinkpad_x220_sandy-bridge

This commit is contained in:
Jörg Thalheim 2020-10-20 06:35:01 +02:00 committed by GitHub
commit 770dbcdb49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 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"
];
```

View File

@ -3,7 +3,7 @@
{
imports = [
../.
../../../common/cpu/intel
../../../common/cpu/intel/sandy-bridge
../../../common/pc/laptop/hdd # TODO: reverse compat
../tp-smapi.nix
];