12 lines
No EOL
285 B
Nix
12 lines
No EOL
285 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
|
|
|
|
services.ollama.enable = true;
|
|
services.ollama.acceleration = "cuda";
|
|
|
|
services.open-webui.enable = true;
|
|
services.open-webui.port = 8888;
|
|
|
|
};
|
|
} |