nixpkgs/nixos/tests/ollama-cuda.nix
2026-03-05 16:39:11 -05:00

17 lines
307 B
Nix

{ lib, pkgs, ... }:
{
name = "ollama-cuda";
meta.maintainers = [ ];
nodes.cuda =
{ ... }:
{
services.ollama.enable = true;
services.ollama.package = pkgs.ollama-cuda;
};
testScript = ''
cuda.wait_for_unit("multi-user.target")
cuda.wait_for_open_port(11434)
'';
}