Compare commits

..

3 Commits

Author SHA1 Message Date
bd4c57599a helix health packages 2025-03-22 00:31:18 -05:00
27e91ae66f codium 2025-03-22 00:28:47 -05:00
ec7b9b4e23 fix tmux terminal 2025-03-22 00:19:21 -05:00

View File

@ -37,9 +37,21 @@
pkgs.mkShell { pkgs.mkShell {
shellHook = '' shellHook = ''
export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc} export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc}
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
''; '';
buildInputs = runtimeDeps; buildInputs = runtimeDeps;
nativeBuildInputs = buildDeps ++ devDeps ++ [ rustc ]; nativeBuildInputs = buildDeps ++ devDeps ++ [ rustc ];
packages = with pkgs; [
rust-analyzer
lldb
(vscode-with-extensions.override {
vscode = vscodium;
vscodeExtensions = with vscode-extensions; [
rust-lang.rust-analyzer
vadimcn.vscode-lldb
];
})
];
}; };
in { in {
_module.args.pkgs = import inputs.nixpkgs { _module.args.pkgs = import inputs.nixpkgs {