Switch to fish.

This commit is contained in:
2024-09-13 18:19:25 +01:00
parent 79970e1567
commit 2d8f4c56dd
4 changed files with 26 additions and 53 deletions

View File

@@ -1,13 +1,17 @@
{ pkgs }:
let
nixTools = with pkgs; [
git
home-manager
mosh
tmux
vim
zsh
];
in
nixTools
{
packages =
with pkgs;
[
git
home-manager
mosh
tmux
vim
zsh
]
++ (with pkgs.fishPlugins; [
# don't add failed commands to history
sponge
]);
}