summary refs log tree commit diff
path: root/nixos/tests/docker.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/docker.nix')
-rw-r--r--nixos/tests/docker.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix
index 034dcb04adfd..635a97e2ce09 100644
--- a/nixos/tests/docker.nix
+++ b/nixos/tests/docker.nix
@@ -11,6 +11,8 @@ import ./make-test.nix ({ pkgs, ...} : {
       { config, pkgs, ... }:
         {
           virtualisation.docker.enable = true;
+          # FIXME: The default "devicemapper" storageDriver fails in NixOS VM
+          # tests.
           virtualisation.docker.storageDriver = "overlay";
         };
     };