about summary refs log blame commit diff stats
path: root/modules/by-name/ol/ollama/module.nix
blob: bd0baaa6cabd73641dd779f9c19254c0a99d4b8d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13











                                         




                                                                      



                                                                                         
                               


                       
                           

      
{
  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;
    };
  };
}