zed/nix/dev/flake.nix
Cameron Mcloughlin 4a99aa870e
agent: More sandboxing changes (#60111)
Large change to sandboxing:
- fixes a nasty TOCTOU relating to a symlink swap attack, documented in
the `sandboxing/README.md`
- Adds UI and restrictions when in an untrusted workspace
- Adds tests for (soon to be removed) git support


---

Release Notes:

- N/A or Added/Fixed/Improved ...
2026-06-30 11:10:04 +00:00

14 lines
620 B
Nix

{
description = "Private inputs for development purposes. These are used by the top level flake in the `dev` partition, but do not appear in consumers' lock files.";
inputs = {
treefmt-nix.url = "github:numtide/treefmt-nix";
# Pinned to a nixpkgs revision that packages mdBook 0.4.40, the version the
# docs require (see `crates/docs_preprocessor/Cargo.toml`). Newer mdBook
# releases break the docs' double-nested subdirectories.
nixpkgs-mdbook.url = "github:NixOS/nixpkgs/6ecabf9e3f617aeec1a23a27d0080cab066a9d5b";
};
# This flake is only used for its inputs.
outputs = { ... }: { };
}