aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/sandbox/configuration.nix')
-rw-r--r--test/sandbox/configuration.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/sandbox/configuration.nix b/test/sandbox/configuration.nix
index fae60ac2..977d8546 100644
--- a/test/sandbox/configuration.nix
+++ b/test/sandbox/configuration.nix
@@ -82,6 +82,24 @@ in
src = "/var/cache";
write = true;
}
+ {
+ type = "overlay";
+ dst = "/.hakurei/.ro-store";
+ lower = [
+ "/nix/.ro-store"
+ "/nix/.rw-store/upper"
+ ];
+ }
+ {
+ type = "overlay";
+ dst = "/.hakurei/store";
+ lower = [
+ "/nix/.ro-store"
+ "/nix/.rw-store/upper"
+ ];
+ upper = "/tmp/.hakurei-store-rw/upper";
+ work = "/tmp/.hakurei-store-rw/work";
+ }
];
inherit (testCases) apps;