Fix target specification type (#1)
Otherwise you get an error `Target specification with 3 components is ambiguous`.
This commit is contained in:
parent
4fbce19a7a
commit
400fa6d9af
|
@ -23,8 +23,8 @@ then re-build the hierarchy.
|
||||||
Eg:
|
Eg:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
eachSystem ["x86-64-linux"] (system: { hello = 42; })
|
eachSystem ["x86_64-linux"] (system: { hello = 42; })
|
||||||
# => { hello.x86-64-linux.hello = 42; }
|
# => { hello.x86_64-linux.hello = 42; }
|
||||||
```
|
```
|
||||||
|
|
||||||
### `eachDefaultSystem -> (<system> -> attrs)`
|
### `eachDefaultSystem -> (<system> -> attrs)`
|
||||||
|
|
Loading…
Reference in New Issue