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

10 lines
113 B
Nix

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