nixos/oci-containers: Use docker.package

This commit is contained in:
Simon Žlender 2021-01-28 21:27:50 +01:00
parent d0300e7713
commit 683f0b8938

View file

@ -217,7 +217,7 @@ let
environment = proxy_env;
path =
if cfg.backend == "docker" then [ pkgs.docker ]
if cfg.backend == "docker" then [ config.virtualisation.docker.package ]
else if cfg.backend == "podman" then [ config.virtualisation.podman.package ]
else throw "Unhandled backend: ${cfg.backend}";