From 26a8a4454af4872ce7b4a76785e14d273219b12c Mon Sep 17 00:00:00 2001 From: Archit Gupta Date: Mon, 15 Jan 2024 19:05:49 -0800 Subject: [PATCH] Fix readme shell example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 984e22f..6ff476e 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ system. `systems` can be set to change configured systems from the default. ```nix { inputs.flakelight.url = "github:nix-community/flakelight"; - outputs = { flakelight, ... } + outputs = { flakelight, ... }: flakelight ./. { devShell.packages = pkgs: [ pkgs.hello pkgs.coreutils ]; };