From 07d490fd895b09144684dd8b389ef02f0f1256c4 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Fri, 29 Apr 2022 00:58:40 +0200 Subject: [PATCH] stores can also delete objects --- doc/manual/src/architecture/store/store.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/src/architecture/store/store.md b/doc/manual/src/architecture/store/store.md index 74d3d7f84..cbb5a4169 100644 --- a/doc/manual/src/architecture/store/store.md +++ b/doc/manual/src/architecture/store/store.md @@ -4,7 +4,7 @@ A Nix store is a collection of [store objects](objects.md) with associated opera These store objects can hold arbitrary data, and Nix makes no distinction if they are used as build inputs, build results, or build plans. -A Nix store allows adding and retrieving store objects. +A Nix store allows adding, retrieving, and deleting store objects. It can perform builds, that is, transform build inputs using instructions from the build plans into build outputs. It also keeps track of *references* between data and can therefore garbage-collect unused store objects.