You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's users pin the devbox version so there are no issues with people
running various devbox versions while working in team setting.
* Implements #1371
Copy file name to clipboardExpand all lines: docs/app/docs/configuration.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Your devbox configuration is stored in a `devbox.json` file, located in your pro
7
7
8
8
```json
9
9
{
10
+
"devbox_version": "",
10
11
"packages": [] | {},
11
12
"env": {},
12
13
"shell": {
@@ -17,6 +18,10 @@ Your devbox configuration is stored in a `devbox.json` file, located in your pro
17
18
}
18
19
```
19
20
21
+
## Devbox Version
22
+
23
+
The devbox_version field locks your project to a specific Devbox version, safeguarding against unexpected changes when collaborators update their environments.
24
+
20
25
### Packages
21
26
22
27
This is a list or map of Nix packages that should be installed in your Devbox shell and containers. These packages will only be installed and available within your shell, and will have precedence over any packages installed in your local machine. You can search for Nix packages using [Nix Package Search](https://search.nixos.org/packages).
@@ -297,6 +302,7 @@ An example of a devbox configuration for a Rust project called `hello_world` mig
0 commit comments