Joey Hafner
d002643347
- WIP: Installer configuration to be used for portable or new systems. - Add defaultApps (zen for links, codium for plain text). - Refactor Ollama (AI) to skip model selection, WIP "codewriter" model. - Password-manager: Switch to wayland package for rofi-rbw, increase lock timeout. - Add mangohud config that shows FPS, frame time, throttling status in a horizontal layout below OW's HUD. - Add nixGL config to use mesa and vulkan. - Refactor configuration.nix as a "hub" file that just imports other files. - amdgpu: Remove problematic amdvlk driver. Was causing misbehavior in Overwatch. - gaming: Add gamescope and gamemode.
14 lines
353 B
Nix
14 lines
353 B
Nix
{ pkgs, ... }: {
|
|
services.ollama = {
|
|
enable = true;
|
|
port = 11434;
|
|
host = "127.0.0.1";
|
|
home = "/var/lib/ollama";
|
|
group = "users";
|
|
models = "/var/lib/ollama/models";
|
|
loadModels = [ "llama3.2:3b" "llama3.1:8b" "codellama:13b" ];
|
|
package = pkgs.ollama-rocm;
|
|
rocmOverrideGfx = "11.0.0";
|
|
acceleration = "rocm";
|
|
};
|
|
} |