feat: youve heard of cd-dvd, now get ready for cd-z

This commit is contained in:
Teesh 2026-02-05 13:52:06 +02:00
parent b3001a54b0
commit 8bd4eacd3a

18
modules/base/zoxide.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }:
{
flake.modules.nixos.base = {
programs.zoxide = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableXonshIntegration = true;
};
environment.shellAliases = {
"cd" = "z";
};
};
}