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

@ -42,6 +42,8 @@
programs.zsh.enable = true;
programs.nix-ld.enable = true;
programs.thunar.enable = true;
programs.dconf.enable = true;
@ -82,11 +84,12 @@
services.openssh = {
enable = true;
listenAddresses = [{ addr = "192.168.1.67"; port = 2200; }];
};
services.gvfs.enable = true;
services.input-remapper.enable = true;
system.stateVersion = "25.11";
}

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" ];
};
};
}