nix-dotfiles/modules/docker.nix

17 lines
330 B
Nix
Raw Normal View History

2024-04-18 17:53:15 -04:00
{ lib, ... }:
{
virtualisation.docker = {
enable = lib.mkDefault true;
logDriver = "local";
storageDriver = "overlay2";
daemon.settings = {
experimental = true;
exec-opts = [ "native.cgroupdriver=systemd" ];
log-opts = {
max-size = "10m";
max-file = "5";
};
};
};
}