From 06989e75850f924c905115e0ccfc09d7f36a943f Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Thu, 18 Dec 2025 00:35:15 +0100 Subject: [PATCH] tests.devShellTools.nixos: Fix test This increases the disk size, which I assume was consumed by the various docker image operations. --- 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 e64db38e82cc..96b2582938d0 100644 --- a/nixos/tests/docker-tools-nix-shell.nix +++ b/nixos/tests/docker-tools-nix-shell.nix @@ -17,7 +17,7 @@ in { ... }: { virtualisation = { - diskSize = 4000; + diskSize = 8000; docker.enable = true; }; };