python312Packages.dissect-extfs: 3.11 -> 3.12
[NixPkgs.git] / nixos / tests / ollama-rocm.nix
blob81915630d950b8b8cb23ee5068b898c53f518981
1 { lib, ... }:
3   name = "ollama-rocm";
4   meta.maintainers = with lib.maintainers; [ abysssol ];
6   nodes.rocm =
7     { ... }:
8     {
9       services.ollama.enable = true;
10       services.ollama.acceleration = "rocm";
11     };
13   testScript = ''
14     rocm.wait_for_unit("multi-user.target")
15     rocm.wait_for_open_port(11434)
16   '';