Fix target specification type (#1)

Otherwise you get an error `Target specification with 3 components is ambiguous`.
This commit is contained in:
Frederik Rietdijk 2020-06-30 18:19:09 +02:00 committed by GitHub
parent 4fbce19a7a
commit 400fa6d9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ then re-build the hierarchy.
Eg:
```nix
eachSystem ["x86-64-linux"] (system: { hello = 42; })
# => { hello.x86-64-linux.hello = 42; }
eachSystem ["x86_64-linux"] (system: { hello = 42; })
# => { hello.x86_64-linux.hello = 42; }
```
### `eachDefaultSystem -> (<system> -> attrs)`