New Ollama.nix, the ai.nix did not work out. Added ZED-editor as separate app

This commit is contained in:
2026-02-28 15:10:05 +01:00
parent 2db1430bfd
commit 818169d819
3 changed files with 308 additions and 309 deletions
+1 -2
View File
@@ -2,14 +2,13 @@
let
ollamaConfPath = flakeRoot + "/assets/conf/apps/ai/ollama/ollama.conf";
ollamaEnv = builtins.readFile ollamaConfPath;
in
{
services.ollama = {
enable = true;
package = pkgs.ollama;
extraConfig = lib.mkForce ollamaEnv;
environmentFile = ollamaConfPath;
wantedBy = [ "multi-user.target" ];
};
}