From c436ba9c83fd261a5de82a4df4e2b9cf8ba57ea6 Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Fri, 31 May 2024 20:16:02 -0800 Subject: [PATCH] add zoxide, which does a thing apparently --- modules/shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/shell.nix b/modules/shell.nix index a6c0e75..fd87a04 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -34,4 +34,8 @@ ]; }; }; + programs.zoxide = { + enable = true; + options = [ "--cmd cd" ]; + }; }