Add zoxide

This commit is contained in:
2025-02-28 18:57:16 +01:00
parent f7e6844a5b
commit 6b0dd1a8ef
2 changed files with 9 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
imports = [
./antidote.nix
./starship.nix
./zoxide.nix
./zsh.nix
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, inputs, ... }:
{
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
}