feat(ollama): enable and choose some diff models.
This commit is contained in:
parent
b0e98a8e7b
commit
d8853535a7
2 changed files with 2 additions and 1 deletions
|
@ -140,6 +140,7 @@
|
||||||
crony.ryzenadj.enable = true;
|
crony.ryzenadj.enable = true;
|
||||||
crony.auto-cpufreq.enable = true;
|
crony.auto-cpufreq.enable = true;
|
||||||
crony.hyprland-nixos.enable = true;
|
crony.hyprland-nixos.enable = true;
|
||||||
|
crony.ollama.enable = true;
|
||||||
|
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
config = lib.mkIf config.crony.ollama.enable {
|
config = lib.mkIf config.crony.ollama.enable {
|
||||||
services.ollama = {
|
services.ollama = {
|
||||||
enable = true;
|
enable = true;
|
||||||
loadModels = ["llama3.2:3b" "deepseek-r1:1.5b"];
|
loadModels = ["llama3.2:3b" "qwen2.5-coder:1.5b" "qwen2.5:3b"];
|
||||||
acceleration = "cuda";
|
acceleration = "cuda";
|
||||||
};
|
};
|
||||||
services.open-webui = {
|
services.open-webui = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue