nix: allow file:// and other insecure schemes in VM tests

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I8ad4f8e9cf0990a036cff252d8dd38f96a6a6964
This commit is contained in:
raf 2026-02-16 00:04:42 +03:00
commit 2a404e685b
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -62,6 +62,8 @@ in {
host = "127.0.0.1";
port = 3000;
cors_permissive = false;
# Allow file:// URLs in VM tests (no network, repos are local)
allowed_url_schemes = ["https" "http" "git" "ssh" "file"];
};
gc.enabled = false;