blob: f9319fe25f064b1a4e444fe89407058aa8548e06 (
plain)
1
2
3
4
5
6
7
8
|
{
imports = [ ./base.nix ];
# Github Actions runners try to use aufs and fail if this is not set explicitly
virtualisation.docker.daemon.settings = {
"storage-driver" = "vfs";
};
}
|