Add ollama to crow

This commit is contained in:
KnightArtorias 2026-06-28 11:35:08 -04:00
parent 659ff3b169
commit 3a74f7d044
3 changed files with 14 additions and 1 deletions

View file

@ -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 = {

View file

@ -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;

View file

@ -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;
}; };
}; };