From b7400e23af6bb5096fc9ac105167ee1d2f0942c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 25 May 2025 17:18:50 +0200 Subject: [PATCH] feat(devtool): install lldb debugger --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e3d9831..cf1a7c3 100644 --- a/flake.nix +++ b/flake.nix @@ -4,9 +4,9 @@ flake-utils.url = "github:numtide/flake-utils"; }; outputs = { - self, nixpkgs, flake-utils, + ... }: flake-utils.lib.eachDefaultSystem (system: let @@ -28,6 +28,8 @@ pkgs.bacon pkgs.cargo-semver-checks pkgs.cargo-insta + # debugger + pkgs.lldb ]; }; packages.default = pkgs.rustPlatform.buildRustPackage {