Compare commits

..

2 Commits

Author SHA1 Message Date
f2f589884d add alacritty to desktop1
All checks were successful
nixos config pipeline / show-flake (push) Successful in 25s
nixos config pipeline / deploy (push) Successful in 40s
2025-10-11 14:46:41 +02:00
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

View File

@ -30,6 +30,11 @@
cp = "cp -r";
cd = "sl";
};
initContent = ''
if [[ $TERM == "xterm-kitty" ]]; then
alias ssh="kitty +kitten ssh"
fi
'';
};
programs.git = {

View File

@ -50,6 +50,7 @@ in
firejail.enable = true;
wireshark.enable = true;
bitwarden.enable = true;
alacritty.enable = true;
};
};
}