Files
nix-config/users/jordan/common/ssh.nix
Jordan Holt b1ed31104b
Some checks failed
Check flake / build-amd64-linux (push) Failing after 25s
treewide: update to 25.11
2025-12-01 11:55:55 +00:00

17 lines
207 B
Nix

{
...
}:
{
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
matchBlocks."*".addKeysToAgent = "yes";
};
home.persistence."/state".files = [
".ssh/known_hosts"
];
}