diff options
| author | Fuwn <[email protected]> | 2021-04-26 13:28:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-26 13:28:06 -0700 |
| commit | ead4b81267c8d249370a6e9c793b9e6011e02a80 (patch) | |
| tree | b409e1a0d801bc6f2bdfae6631ae779bc28172e2 /nix | |
| parent | etc: Remove legacy server module (diff) | |
| download | whirl-ead4b81267c8d249370a6e9c793b9e6011e02a80.tar.xz whirl-ead4b81267c8d249370a6e9c793b9e6011e02a80.zip | |
fmt: Fix whitespace
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/rust.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nix/rust.nix b/nix/rust.nix index c6e8c2a..5066437 100644 --- a/nix/rust.nix +++ b/nix/rust.nix @@ -1,10 +1,10 @@ { sources ? import ./sources.nix }: let - pkgs = - import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; - channel = "nightly"; - date = "2021-02-20"; - targets = [ ]; - chan = pkgs.rustChannelOfTargets channel date targets; + pkgs = + import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; + channel = "nightly"; + date = "2021-02-20"; + targets = [ ]; + chan = pkgs.rustChannelOfTargets channel date targets; in chan |