zoxide fix

This commit is contained in:
foglar 2024-12-14 16:40:33 +01:00
parent 3f2546116f
commit bda4b5d6c8
2 changed files with 8 additions and 4 deletions

View File

@ -23,8 +23,6 @@
ip = "ip -c";
s = "kitten ssh";
diff = "diff --color";
cd = "z";
respawn = "clear; pfetch";
l = "eza -lh --icons=auto";
mkdir = "mkdir -p";

View File

@ -1,5 +1,8 @@
{lib, config, ...}:
{
lib,
config,
...
}: {
options = {
program.zoxide.enable = lib.mkEnableOption "zoxide";
};
@ -8,6 +11,9 @@
programs.zoxide = {
enable = true;
enableBashIntegration = true;
options = [
"--cmd cd"
];
};
};
}
}