diff --git a/.envrc b/.envrc deleted file mode 100644 index 65326bb6d..000000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use nix \ No newline at end of file diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 4e287ab11..000000000 --- a/shell.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ pkgs ? import { - overlays = [ - (import (builtins.fetchTarball - "https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz")) - ]; -} }: -with pkgs; -let - - nightly = (pkgs.rustChannelOf { - date = "2019-10-14"; - channel = "nightly"; - }).rust.override { - extensions = [ - "clippy-preview" - "rls-preview" - "rust-analysis" - "rust-src" - "rustfmt-preview" - ]; - }; - - nu-deps = [ openssl_1_1 pkg-config x11 python3 ]; - - rust = [ nightly rustracer cargo-watch ]; - -in stdenv.mkDerivation { - name = "nushell-rust"; - buildInputs = nu-deps ++ rust; - SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; -}