diff --git a/immich-ml-container.nix b/immich-ml-container.nix index af95820..21154db 100644 --- a/immich-ml-container.nix +++ b/immich-ml-container.nix @@ -58,10 +58,10 @@ in { services.immich-machine-learning = { after = [ "network-online.target" ]; before = [ "nginx.service" ]; - path = with pkgs; [ docker-compose coreutils nvidia-podman ]; + path = with pkgs; [ docker-compose nvidia-podman coreutils ]; serviceConfig = { ExecStart = pkgs.writeShellScript "immich-machine-learning" '' - podman-compose -f ${immichMlConfigYaml} up + docker-compose -f ${immichMlConfigYaml} up ''; }; };