From 8c1f94d05ab2307f9e625f4f1139e9a1e95d6dd0 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Sat, 18 Jan 2025 13:58:08 +0300 Subject: [PATCH] feat(devshell): Add pkgs for helix and switching to zsh --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index 70ae5da..90982bb 100644 --- a/flake.nix +++ b/flake.nix @@ -125,9 +125,12 @@ devShells."${system}".default = let pkgs = import nixpkgs { inherit system; }; in pkgs.mkShell { + shellHook = "zsh"; packages = with pkgs; [ cargo rustc + rust-analyzer + lldb ]; }; };