nix-dotfiles/hm/ssh.nix

9 lines
146 B
Nix

{
programs.ssh = {
enable = true;
matchBlocks."*" = {
identityFile = "~/.ssh/id_ed25519";
compression = true;
};
};
}