nix-dotfiles/hm/modules/ssh.nix

11 lines
169 B
Nix

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