fish: replace zsh with fish

This commit is contained in:
Veneficium 2024-10-10 22:33:51 +02:00
parent a9f80adf3e
commit cd7b9191bb
5 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.fish = {
enable = true;
plugins = [
{
name = "fish-you-should-use";
src = pkgs.fishPlugins.fish-you-should-use;
}
];
};
}

View file

@ -2,6 +2,8 @@
{
programs.starship = {
enable = true;
enableZshIntegration = true;
#enableZshIntegration = true;
enableTransience = true;
enableFishIntegration = true;
};
}