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