From fa4e1df1c393f0d43bda5543b7ee28a907b0de30 Mon Sep 17 00:00:00 2001 From: Mike Landau Date: Fri, 31 Jan 2025 11:51:52 -0800 Subject: [PATCH] [devboxjson] Add nixpkgs to schema --- .schema/devbox.schema.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.schema/devbox.schema.json b/.schema/devbox.schema.json index 41c3ffd3534..f540406976e 100644 --- a/.schema/devbox.schema.json +++ b/.schema/devbox.schema.json @@ -139,7 +139,16 @@ }, "env_from": { "type": "string" + }, + "nixpkgs": { + "type": "object", + "properties": { + "commit": { + "type": "string", + "description": "The commit hash of the nixpkgs repository to use" + } + } } }, "additionalProperties": false -} \ No newline at end of file +}