nix-dotfiles/hm_modules/ssh.nix

7 lines
141 B
Nix

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