diff --git a/home/shell/autojump.nix b/home/shell/autojump.nix new file mode 100644 index 0000000..31128dc --- /dev/null +++ b/home/shell/autojump.nix @@ -0,0 +1,5 @@ +{...}: { + programs.autojump = { + enable = true; + }; +} diff --git a/home/shell/default.nix b/home/shell/default.nix index 1ab6afc..70c1c49 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -2,6 +2,7 @@ imports = [ ./aria2.nix ./atuin.nix + ./autojump.nix ./bat.nix ./bottom.nix ./btop.nix diff --git a/home/shell/zoxide.nix b/home/shell/zoxide.nix index d9fabf8..65ce210 100644 --- a/home/shell/zoxide.nix +++ b/home/shell/zoxide.nix @@ -3,9 +3,6 @@ enable = true; }; - home.shellAliases = { - j = "z"; - }; programs.nushell.shellAliases = { j = "z"; };