vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / ollama-cuda.nix
blobbbab7e24d35c7301bcd7d1b2c13bb72000256175
1 { lib, ... }:
3   name = "ollama-cuda";
4   meta.maintainers = with lib.maintainers; [ abysssol ];
6   nodes.cuda =
7     { ... }:
8     {
9       services.ollama.enable = true;
10       services.ollama.acceleration = "cuda";
11     };
13   testScript = ''
14     cuda.wait_for_unit("multi-user.target")
15     cuda.wait_for_open_port(11434)
16   '';