summaryrefslogtreecommitdiff
path: root/nix/modules/ollama.nix
blob: 736d5a425377352511a093c2d6045aa2b44d49ac (plain)
1
2
3
4
5
6
7
8
9
{ config, lib, ... }:
{
  services.ollama = {
    enable = lib.mkDefault config.monorepo.profiles.workstation.enable;
    acceleration = "cuda";
    host = "0.0.0.0";
    openFirewall = true;
  };
}