Files
nix-config/users/jordan/common/ssh.nix
Jordan Holt 2057c1dccb
Some checks failed
Check flake / build-amd64-linux (push) Failing after 1s
users/jordan: fix ssh agent issues
2025-12-22 15:23:23 +00:00

14 lines
126 B
Nix

{
...
}:
{
programs.ssh = {
enable = true;
};
home.persistence."/state".files = [
".ssh/known_hosts"
];
}