11 lines
165 B
Nix
11 lines
165 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
imports = [ ];
|
|
services.ollama = {
|
|
enable = true;
|
|
acceleration = "cuda";
|
|
host = "0.0.0.0";
|
|
openFirewall = true;
|
|
};
|
|
}
|