From 429805224daa07cc698f53d581b222a989240459 Mon Sep 17 00:00:00 2001 From: ulve Date: Wed, 3 Jun 2026 05:38:20 +0200 Subject: [PATCH] asdasd --- home.nix | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 1e91ff8..37b34a4 100644 --- a/home.nix +++ b/home.nix @@ -6,17 +6,49 @@ enable = true; settings.user.name = "ulve"; settings.user.email = "johansson.olov@gmail.com"; + delta.enable = true; + }; + + programs.eza = { + enable = true; + enableZshIntegration = true; + git = true; + icons = "auto"; + }; + + programs.bat = { + enable = true; }; home.stateVersion = "26.05"; programs.bash = { enable = true; shellAliases = { n = "nvim"; + rebuild = "sudo nixos-rebuild switch --flake ~/nixos-dotfiles"; }; }; + programs.zoxide = { + enable = true; + enableZshIntegration = true; + options = [ "--cmd z" ]; + }; + + programs.fzf = { + enable = true; + enableZshIntegration = true; + }; + programs.zsh = { enable = true; + shellAliases = { + n = "nvim"; + rebuild = "sudo nixos-rebuild switch --flake ~/nixos-dotfiles"; + }; + initContent = '' + bindkey "^[[A" history-search-backward + bindkey "^[[B" history-search-forward + ''; }; programs.starship = { @@ -91,7 +123,6 @@ wmenu # dynamic menu btop # resource monitor htop # process viewer - fzf # fuzzy search tmux # terminal multiplexer neovim # editor fd # fast find alternative @@ -128,6 +159,7 @@ revive # linter: go dotnet-sdk # .net sdk (c#) + jq # json processor ]; }