nightly devshell

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-28 12:15:00 -05:00
parent 9c9126b3a8
commit 7dcbd31a00

View File

@ -35,6 +35,29 @@
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive} export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
''; '';
}; };
devShells.nightly = with pkgs; mkShell {
buildInputs = [
# rust-bin.beta.latest.default
rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)
];
packages = with pkgs; [
# rust-bin.beta.latest.clippy
# rust-bin.beta.latest.rust-analyzer
# rust-bin.beta.latest.rustfmt
# rust-bin.beta.latest.rust-std
rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
extensions = [ "clippy" "rust-analyzer" "rustfmt" "rust-std" ];
# targets = [ "arm-unknown-linux-gnueabihf" ];
})
gdb
# gdb-dashboard
bacon
python313Packages.pygments # for personal gdb-dashboard use
];
shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
'';
};
} }
); );
} }