docker: use devicemapper again

This commit is contained in:
makefu 2024-01-15 22:53:19 +01:00
parent 19352ea7c3
commit 901c72f9b1
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -1,6 +1,9 @@
{ pkgs, config, ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker = {
enable = true;
storageDriver = "devicemapper";
};
environment.systemPackages = with pkgs;[
docker
docker-compose