Initial commit

This commit is contained in:
cubernetes 2026-05-24 21:57:01 +02:00
commit 8ecabce74c
8 changed files with 410 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ ... }:
{
services.ssh-agent.enable = true;
home.sessionVariables = {
SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/ssh-agent";
};
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
identitiesOnly = true;
};
};
};
}