bind mount local nix store to containers
Some checks failed
/ perform flake analysis (push) Successful in 44s
/ build hive configuration (push) Failing after 1m0s

This commit is contained in:
shobu
2025-12-24 17:20:40 +01:00
parent 77b1bf9249
commit 527a17a169

View File

@@ -23,6 +23,8 @@
text = '' text = ''
container: container:
network: "host" network: "host"
valid_volume:
- "/nix/store:/nix/store"
''; '';
}; };
in in
@@ -42,7 +44,6 @@
}; };
volumes = [ volumes = [
"/var/run/docker.sock:/var/run/docker.sock" "/var/run/docker.sock:/var/run/docker.sock"
"/nix/store:/nix/store"
"${runner_config}:/config.yml:ro" "${runner_config}:/config.yml:ro"
]; ];
}; };