From 55a9aae5b0ae85778ac2c52608eff233f11afe37 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Sun, 16 Oct 2016 09:40:21 -0400 Subject: [PATCH] theba/docker: do not use braindead devicemapper storage --- theba.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/theba.nix b/theba.nix index f80a390..716c174 100644 --- a/theba.nix +++ b/theba.nix @@ -57,7 +57,10 @@ unison ]; - virtualisation.docker.enable = true; + virtualisation.docker = { + enable = true; + storageDriver = "overlay2"; + }; users.extraUsers.gebner.extraGroups = [ "docker" ]; virtualisation.virtualbox.host.enable = true;