Add ollama to crow
This commit is contained in:
parent
659ff3b169
commit
3a74f7d044
3 changed files with 14 additions and 1 deletions
|
|
@ -134,6 +134,10 @@
|
||||||
matches = [ { app-id="^element$"; } ];
|
matches = [ { app-id="^element$"; } ];
|
||||||
open-maximized = true;
|
open-maximized = true;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
matches = [ { app-id = "^brave-.+-Default$"; title = "^Bitwarden$"; } ];
|
||||||
|
open-floating = true;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
binds = {
|
binds = {
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,15 @@
|
||||||
blueman.enable = true;
|
blueman.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.ollama = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.ollama-rocm;
|
||||||
|
environmentVariables = {
|
||||||
|
HSA_OVERRIDE_GFX_VERSION = "10.3.0";
|
||||||
|
};
|
||||||
|
loadModels = [ "deepseek-r1:32b" "qwen3.5:14b" ];
|
||||||
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
users.users.nest = {
|
users.users.nest = {
|
||||||
description = "nest";
|
description = "nest";
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "network" ];
|
extraGroups = [ "wheel" "network" "render" "video" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue