diff --git a/config/modules/openvivo.nix b/config/modules/openvivo.nix index 4ebee7b..772bea1 100644 --- a/config/modules/openvivo.nix +++ b/config/modules/openvivo.nix @@ -13,19 +13,19 @@ owner = "ravi9"; repo = "llama.cpp"; rev = "1117e77"; - hash = lib.fakeHash; + hash = "sha256-7NMhKGxfutZ7i16ra3EA4pYEnLl0S23E6TFY7IhVPXU="; }); in { virtualisation.oci-containers.backend = "podman"; virtualisation.oci-containers.containers = { - container-name = { - image = "${llama}/.devops/openvivo.Dockerfile"; # Or use `build` for remote Git - # build = { - # context = llama; - # dockerfile = "Dockerfile"; # Optional, if not root - # args = { }; # Optional build args - # }; + openvino = { + image = "openvino:latest"; + imageFile = pkgs.dockerTools.buildImage { + name = "openvino"; + tag = "latest"; + fromImage = "${llama}/.devops/openvino.Dockerfile"; + }; autoStart = true; ports = [ "127.0.0.1:1234:1234" ]; };