Fixed zoxide not working

This commit is contained in:
2024-09-04 08:06:33 +02:00
parent fb35600660
commit e5a0a82307
3 changed files with 11 additions and 1 deletions

10
home/zoxide.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
programs.zoxide = {
enable = true;
enableFishIntegration= true;
options = [
"--cmd cd"
];
};
}