Compare commits

...

3 Commits

Author SHA1 Message Date
2ff5645d54 Add git cm alias 2025-04-19 00:00:24 -04:00
2b2b430ccd Bind ollama to 0.0.0.0 and add models 2025-04-18 23:54:02 -04:00
ab8861b97a Use static ip for TrueNAS 2025-04-18 22:25:55 -04:00
2 changed files with 5 additions and 2 deletions

View File

@@ -58,6 +58,7 @@ in
aa = "add -A .";
br = "branch";
c = "commit -S";
cm = "commit -S -m";
ca = "commit -S --amend";
cane = "commit -S --amend --no-edit";
cb = "checkout -b";

View File

@@ -142,7 +142,7 @@ in
fsType = "nfs";
};
"/mnt/truenas/home/backups" = {
device = "192.168.1.32:/mnt/wd4t/data/home/backup/";
device = "192.168.1.132:/mnt/wd4t/data/home/backup/";
fsType = "nfs";
};
};
@@ -318,12 +318,14 @@ in
package = unstable.ollama;
enable = true;
acceleration = "rocm";
host = "0.0.0.0";
environmentVariables = {
HSA_OVERRIDE_GFX_VERSION = "11.0.2";
};
loadModels = [
"deepseek-r1:8b"
"dolphin3:8b"
"llama3.1"
"llava"
];
};