Compare commits

...
2 Commits
Author SHA1 Message Date
smayzy f2f589884d add alacritty to desktop1
nixos config pipeline / deploy (push) Successful in 40s
nixos config pipeline / show-flake (push) Successful in 25s
2025-10-11 14:46:41 +02:00
smayzy 2b7c1d4a64 add ssh alias for kitten if kitty is used 2025-10-11 14:46:41 +02:00
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -30,6 +30,11 @@
cp = "cp -r"; cp = "cp -r";
cd = "sl"; cd = "sl";
}; };
initContent = ''
if [[ $TERM == "xterm-kitty" ]]; then
alias ssh="kitty +kitten ssh"
fi
'';
}; };
programs.git = { programs.git = {
+1
View File
@@ -50,6 +50,7 @@ in
firejail.enable = true; firejail.enable = true;
wireshark.enable = true; wireshark.enable = true;
bitwarden.enable = true; bitwarden.enable = true;
alacritty.enable = true;
}; };
}; };
} }