Strange...

This commit is contained in:
niten 2024-05-21 19:29:29 -07:00
parent 25a898752a
commit 8fbdfa22f0
1 changed files with 2 additions and 2 deletions

View File

@ -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
'';
};
};