From 9ed3ba85eaba4bc4bd12b290dc4daf00ffe159dc Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 15 Aug 2025 03:30:51 +0900 Subject: hst/fs: implement overlay fstype This finally exposes overlay mounts in the high level hakurei API. Signed-off-by: Ophestra --- hst/template_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'hst/template_test.go') diff --git a/hst/template_test.go b/hst/template_test.go index e3c36f58..76933783 100644 --- a/hst/template_test.go +++ b/hst/template_test.go @@ -103,6 +103,15 @@ func TestTemplate(t *testing.T) { "write": true, "perm": 493 }, + { + "type": "overlay", + "dst": "/nix/store", + "lower": [ + "/mnt-root/nix/.ro-store" + ], + "upper": "/mnt-root/nix/.rw-store/upper", + "work": "/mnt-root/nix/.rw-store/work" + }, { "type": "bind", "src": "/nix/store" -- cgit v1.3.1