Security key support
This commit is contained in:
parent
62c054bae4
commit
63f906cecd
10 changed files with 121 additions and 19 deletions
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue