nix: formatting

main
Zynh Ludwig 2024-07-30 01:03:38 -07:00
parent 3523c50b71
commit 01cc435dd4
1 changed files with 6 additions and 7 deletions

View File

@ -25,13 +25,12 @@
{ {
devShells = forAllSystems devShells = forAllSystems
(pkgs: { (pkgs: {
default = import ./shell.nix default = import ./shell.nix {
{ inherit pkgs;
inherit pkgs; additionalBuildInputs = [
additionalBuildInputs = [ (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)) ];
]; };
};
}); });
}; };
} }