9 lines
146 B
Nix
9 lines
146 B
Nix
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks."*" = {
|
|
identityFile = "~/.ssh/id_ed25519";
|
|
compression = true;
|
|
};
|
|
};
|
|
}
|