From aaeabb1f3fdaf4f06d882aa288a1eabb380e6281 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Fri, 6 Sep 2024 13:29:44 -0400 Subject: [PATCH] refactor: move zoxide to the zsh module --- user/modules/dev.nix | 4 ---- user/modules/zsh.nix | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/user/modules/dev.nix b/user/modules/dev.nix index e5abd0b..33ee4ab 100644 --- a/user/modules/dev.nix +++ b/user/modules/dev.nix @@ -41,10 +41,6 @@ package = pkgs.jdk21; }; - programs.zoxide = { - enable = true; - }; - # Bun Git config programs.git = { attributes = [ diff --git a/user/modules/zsh.nix b/user/modules/zsh.nix index 35ba7c1..4f96824 100644 --- a/user/modules/zsh.nix +++ b/user/modules/zsh.nix @@ -43,4 +43,8 @@ } ]; }; + + programs.zoxide = { + enable = true; + }; }