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
(pkgs: {
default = import ./shell.nix
{
inherit pkgs;
additionalBuildInputs = [
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
];
};
default = import ./shell.nix {
inherit pkgs;
additionalBuildInputs = [
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
];
};
});
};
}