From 1c9258ee7d919bcff9bfc9f1613ed976065a6f03 Mon Sep 17 00:00:00 2001 From: cswimr Date: Tue, 4 Feb 2025 11:43:43 -0600 Subject: [PATCH] add `ssh` alias (`kitten ssh`) --- nixos/shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/shell.nix b/nixos/shell.nix index d2762c1..c6fe026 100644 --- a/nixos/shell.nix +++ b/nixos/shell.nix @@ -49,6 +49,10 @@ command "$VISUAL" "''${args[@]}" fi } + + if (( $+commands[kitten] )); then + alias "ssh"="kitten ssh" + fi ''; shellAliases = {