From 7268dd54af489723d160a82a8933dd57bd5614f0 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 29 May 2022 09:57:44 +0530 Subject: [PATCH] feat: sync Nix config with dotfiles --- shell.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index f77499d..ad67780 100644 --- a/shell.nix +++ b/shell.nix @@ -2,11 +2,12 @@ with import { overlays = [ (import ) ]; }; mkShell { buildInputs = [ (rust-bin.stable.latest.default.override { - extensions = [ "rust-src" "rustfmt-preview" ]; + extensions = + [ "rust-src" "rustc-dev" "rustfmt-preview" "llvm-tools-preview" ]; targets = pkgs.lib.optionals pkgs.stdenv.isDarwin [ "aarch64-apple-darwin" ] ++ pkgs.lib.optionals pkgs.stdenv.isLinux - [ "x86_64-unknown-linux-musl" ]; + [ "x86_64-unknown-linux-gnu" ]; }) pkg-config openssl