blob: 7a4e803831ef9958c27bd7c826b5142f99e46cfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
config,
lib,
...
}: let
cfg = config.soispha.services.ollama;
in {
options.soispha.services.ollama = {
enable = lib.mkEnableOption "ollama";
};
config = lib.mkIf cfg.enable {
soispha.impermanence.directories = [
# Set the mode to 700, so that it is private enough for systemd.
{
directory = "/var/lib/private";
mode = "700";
}
# Ollama's systemd services tries to do create the directory under
# `/var/lib/private/ollama` and then symlink `/var/lib/ollama` to that, when
# `DynamicUsers` is true. Thus we need to persist the private directory and not the
# resulting symlink one.
# Relevant issue: https://github.com/nix-community/impermanence/issues/93
"/var/lib/private/ollama"
];
services.ollama = {
enable = true;
acceleration = false;
# TODO: This could work for GPU acceleration. <2024-12-20>
# acceleration = "rocm";
# host = "127.0.0.1";
# port = 11434;
# environmentVariables = {
# HCC_AMDGPU_TARGET = "gfx1032"; # used to be necessary, but doesn't seem to anymore
# };
#
# rocmOverrideGfx = "10.3.2";
};
};
}
|