From 01cc435dd42659506f35c22dbeec3ab75eb97380 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Tue, 30 Jul 2024 01:03:38 -0700 Subject: [PATCH] nix: formatting --- flake.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 5738b80..b5a7705 100644 --- a/flake.nix +++ b/flake.nix @@ -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)) + ]; + }; }); }; }