Add zoxide.nix and update shell aliases

This commit is contained in:
panotaka
2023-12-18 13:56:58 -04:00
parent 029ffaa7a5
commit c953d7bc25
2 changed files with 13 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
./rmtrash.nix ./rmtrash.nix
./starship.nix ./starship.nix
./tldr.nix ./tldr.nix
./zoxide.nix
./zsh ./zsh
]; ];

12
home/shell/zoxide.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config
, ...
}:
{
programs.zoxide = {
enable = true;
};
home.shellAliases = {
cd = "z"
};
}