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$"; } ];
open-maximized = true;
}
{
matches = [ { app-id = "^brave-.+-Default$"; title = "^Bitwarden$"; } ];
open-floating = true;
}
];
binds = {

View file

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

View file

@ -3,7 +3,7 @@
users.users.nest = {
description = "nest";
isNormalUser = true;
extraGroups = [ "wheel" "network" ];
extraGroups = [ "wheel" "network" "render" "video" ];
shell = pkgs.zsh;
};
};