From f57583db804c9da0c28646e2cce9f57046d99af0 Mon Sep 17 00:00:00 2001 From: Dionysis Grigoropoulos Date: Tue, 23 Sep 2025 22:14:52 +0300 Subject: [PATCH] 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. --- nixos/tests/docker-tools-nix-shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/docker-tools-nix-shell.nix b/nixos/tests/docker-tools-nix-shell.nix index c2ae2124e0a1..e64db38e82cc 100644 --- a/nixos/tests/docker-tools-nix-shell.nix +++ b/nixos/tests/docker-tools-nix-shell.nix @@ -17,7 +17,7 @@ in { ... }: { virtualisation = { - diskSize = 3072; + diskSize = 4000; docker.enable = true; }; };