nix/home/program/bash/module/Ssh.nix

9 lines
102 B
Nix
Raw Normal View History

2024-11-11 00:51:32 +03:00
{ ... }: {
text = ''
# Kill all ssh sockets.
function sshka() {
rm ~/.ssh/*.socket
}
'';
}