Update README.md

fixes #12
This commit is contained in:
Jonas Chevalier
2020-11-14 16:09:53 +00:00
committed by GitHub
parent af81e8d00b
commit 5021eac203

View File

@@ -33,7 +33,7 @@ Eg:
```nix
eachSystem ["x86_64-linux"] (system: { hello = 42; })
# => { hello.x86_64-linux.hello = 42; }
# => { hello = { x86_64-linux = 42; }; }
eachSystem allSystems (system: { hello = 42; })
# => {
hello.aarch64-darwin = 42,