Security key support

This commit is contained in:
Jack Mechem 2026-04-30 12:59:55 -07:00
parent 62c054bae4
commit 63f906cecd
10 changed files with 121 additions and 19 deletions

View file

@ -117,6 +117,23 @@
home.sessionVariables = {
EDITOR = "nvim";
# claw-code: route to local Ollama instead of Anthropic/OpenAI
OPENAI_BASE_URL = "http://127.0.0.1:11434/v1";
OPENAI_API_KEY = "ollama";
};
systemd.user.services.ydotoold = {
Unit = {
Description = "ydotool daemon";
After = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.ydotool}/bin/ydotoold";
Restart = "always";
};
Install = {
WantedBy = [ "default.target" ];
};
};
}