From 97a24c1c569face0a2a866d0a09c01896ca7fc18 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Mon, 11 Nov 2024 00:51:32 +0300 Subject: [PATCH] Ssh: Add sshka. --- home/program/bash/module/Ssh.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 home/program/bash/module/Ssh.nix diff --git a/home/program/bash/module/Ssh.nix b/home/program/bash/module/Ssh.nix new file mode 100644 index 00000000..7b8a75cb --- /dev/null +++ b/home/program/bash/module/Ssh.nix @@ -0,0 +1,8 @@ +{ ... }: { + text = '' + # Kill all ssh sockets. + function sshka() { + rm ~/.ssh/*.socket + } + ''; +}