nixosTests.docker-tools-nix-shell: Fix test

This test fails because the VM doesn't have enough disk space. Inceasing
it by almost one GB makes the test pass.
This commit is contained in:
Dionysis Grigoropoulos
2025-09-23 22:14:52 +03:00
parent ce8d6b2625
commit f57583db80

View File

@@ -17,7 +17,7 @@ in
{ ... }:
{
virtualisation = {
diskSize = 3072;
diskSize = 4000;
docker.enable = true;
};
};