summaryrefslogtreecommitdiff
path: root/tests/docker/docker-native.nix
blob: 47ccb7f96a0305d6fbd26a8295ee69766d2a10ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, lib, ... }:
{
  imports = [ ./base.nix ];

  wsl.docker-native.enable = true;
  wsl.docker-native.addToDockerGroup = true;

  # Github Actions runners try to use aufs and fail if this is not set explicitly
  virtualisation.docker.daemon.settings = {
    "storage-driver" = "vfs";
  };
}