From 946da791763db1c306b86a8bd3828bf5814a1247 Mon Sep 17 00:00:00 2001 From: Wesley Nelson Date: Sat, 8 Apr 2023 02:39:05 -0700 Subject: [PATCH] Update documentation for the `systems` argument of `simpleFlake` (#92) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95aa194..78f5ab0 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Input: , # maps to the devShell output. Pass in a shell.nix file or function. shell ? null , # pass the list of supported systems - systems ? [ system.x86_64-linux ] + systems ? [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ] }: null ```