From 400fa6d9af95481440d8d69a6b49de5901936730 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 30 Jun 2020 18:19:09 +0200 Subject: [PATCH] Fix target specification type (#1) Otherwise you get an error `Target specification with 3 components is ambiguous`. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3f27da..301bcb4 100644 --- a/README.md +++ b/README.md @@ -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 -> ( -> attrs)`