Remove local direnv/nix setup

This commit is contained in:
Bill Thiede 2024-06-10 19:12:50 -07:00
parent 344ca0b713
commit 7d9ed41d8e
2 changed files with 0 additions and 20 deletions

1
.envrc
View File

@ -1 +0,0 @@
use_nix

View File

@ -1,19 +0,0 @@
let
unstableTarball = fetchTarball
"https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
pkgs = import <nixpkgs> { };
unstable = import unstableTarball { };
in with pkgs;
pkgs.mkShell {
name = "rust";
buildInputs = [
openssl
pkg-config
unstable.cargo
unstable.rustc
unstable.rustfmt
unstable.rust-analyzer
postgresql
];
}