diff --git a/users/tacocat/programs/default.nix b/users/tacocat/programs/default.nix index 0ca2c6a..2eb865e 100644 --- a/users/tacocat/programs/default.nix +++ b/users/tacocat/programs/default.nix @@ -9,6 +9,7 @@ ./tmux.nix ./tiny.nix ./radioboat.nix + ./zoxide.nix ]; programs.eza = { diff --git a/users/tacocat/programs/zoxide.nix b/users/tacocat/programs/zoxide.nix new file mode 100644 index 0000000..d89cc27 --- /dev/null +++ b/users/tacocat/programs/zoxide.nix @@ -0,0 +1,6 @@ +{...}: { + programs.zoxide = { + enable = true; + enableFishIntegration = true; + }; +} diff --git a/users/tacocat/shell/fish.nix b/users/tacocat/shell/fish.nix index 9e3f4be..b0a50e7 100644 --- a/users/tacocat/shell/fish.nix +++ b/users/tacocat/shell/fish.nix @@ -1,4 +1,4 @@ -{pkgs, ...}: { +{...}: { programs.fish = { enable = true; interactiveShellInit = '' @@ -11,19 +11,5 @@ tmux attach end ''; - shellAliases = { - xilinx-env = "distrobox enter --additional-flags '--env _JAVA_AWT_WM_NONREPARENTING=1' arch"; - }; - plugins = [ - { - name = "z"; - src = pkgs.fetchFromGitHub { - owner = "jethrokuan"; - repo = "z"; - rev = "85f863f20f24faf675827fb00f3a4e15c7838d76"; - sha256 = "+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0="; - }; - } - ]; }; }