From b0fd6a391c24e03b2baf2a2cf519e9a980adbcdd Mon Sep 17 00:00:00 2001 From: Archit Gupta Date: Wed, 20 Sep 2023 20:52:43 -0700 Subject: [PATCH] Fix typo in API guide --- api_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_guide.md b/api_guide.md index 0607ff7..21df27d 100644 --- a/api_guide.md +++ b/api_guide.md @@ -527,7 +527,7 @@ For example: outputs = { flakelight, ... }: flakelight ./. { apps = { - shell = "/bin/sh" + shell = "/bin/sh"; emacs = pkgs: "${pkgs.emacs}/bin/emacs"; bash = pkgs: { type = "app"; program = "${pkgs.bash}/bin/bash"; }; }; @@ -543,7 +543,7 @@ Alternatively, the above can be written as: outputs = { flakelight, ... }: flakelight ./. { apps = { emacs, bash, ... }: { - shell = "/bin/sh" + shell = "/bin/sh"; emacs = "${emacs}/bin/emacs"; bash = { type = "app"; program = "${bash}/bin/bash"; }; };