nix/home/program/bash/module/Ssh.nix
2024-11-11 00:51:32 +03:00

9 lines
102 B
Nix

{ ... }: {
text = ''
# Kill all ssh sockets.
function sshka() {
rm ~/.ssh/*.socket
}
'';
}