From af85691d5f2ebbd83a87412acbf8d3e516c660f9 Mon Sep 17 00:00:00 2001 From: atagen Date: Sun, 21 Aug 2022 02:02:48 +1000 Subject: [PATCH] fix zoxide, add lazygit --- home/home.nix | 7 +++---- system/configuration.nix | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/home/home.nix b/home/home.nix index 93ffe72..66a94f8 100644 --- a/home/home.nix +++ b/home/home.nix @@ -22,13 +22,12 @@ home.packages = with pkgs; [ kitty thunderbird + btop - - bat broot fd - + lazygit rust-analyzer-nightly (fenix.complete.withComponents [ @@ -111,7 +110,7 @@ enableVteIntegration = true; autocd = true; defaultKeymap = "viins"; - initExtra = "\n[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh\n"; + initExtra = "\n[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh\neval \"$(zoxide init zsh)\"\n"; plugins = [ { name = "powerlevel10k"; diff --git a/system/configuration.nix b/system/configuration.nix index 1245189..3226f15 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -10,7 +10,7 @@ # ./wollomi.nix # ./adrift.nix ]; - + environment.pathsToLink = [ "/share/zsh" ]; boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.configurationLimit = 2; boot.loader.systemd-boot.consoleMode = "max";