nix-dotfiles/modules/hm/ssh.nix
2023-07-19 10:42:09 +01:00

7 lines
141 B
Nix

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