1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-03 07:31:00 +01:00

Start to document the local-overlay store

This commit is contained in:
John Ericson 2023-08-03 11:59:04 -04:00
parent 6dc9030606
commit 4f5b01f5cd
3 changed files with 15 additions and 8 deletions

View file

@ -5,6 +5,13 @@
namespace nix {
std::string LocalOverlayStoreConfig::doc()
{
return
#include "local-overlay-store.md"
;
}
Path LocalOverlayStoreConfig::toUpperPath(const StorePath & path) {
return upperLayer + "/" + path.to_string();
}