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$"; } ];
|
||||
open-maximized = true;
|
||||
}
|
||||
{
|
||||
matches = [ { app-id = "^brave-.+-Default$"; title = "^Bitwarden$"; } ];
|
||||
open-floating = true;
|
||||
}
|
||||
];
|
||||
|
||||
binds = {
|
||||
|
|
|
|||
|
|
@ -99,6 +99,15 @@
|
|||
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 = {
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
users.users.nest = {
|
||||
description = "nest";
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "network" ];
|
||||
extraGroups = [ "wheel" "network" "render" "video" ];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue