Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ pkgs, ... }:
{
virtualisation.docker = {
enable = true;
extraOptions = ''
--data-root /var/lib/docker
'';
storageDriver = "zfs";
};
networking.firewall.trustedInterfaces = [ "docker0" ];
}