host/home: add ollama

This commit is contained in:
Dmitriy Pleshevskiy 2024-06-18 15:03:22 +03:00
parent 5748b1d3d9
commit 1cbcc1c569
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -1,4 +1,4 @@
{ globalData, ... }:
{ globalData, pkgs, ... }:
{
imports = [
@ -31,4 +31,13 @@
virtualisation.docker.enable = true;
# Torrent client
services.transmission.enable = true;
services.ollama = {
enable = true;
package = pkgs.unstable.ollama;
};
environment.systemPackages = with pkgs.unstable; [
oterm
];
}