[home][develop] add LLDB

This commit is contained in:
2024-06-27 23:43:03 +08:00
parent 82661eea30
commit ffc393f4e2
+5 -1
View File
@@ -1,6 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
lldb
clang-tools clang-tools
python312 python312
python312Packages.ipython python312Packages.ipython
@@ -31,5 +32,8 @@
}; };
}; };
programs.vscode.enable = true; programs.vscode = {
enable = true;
package = pkgs.vscode.fhs;
};
} }