chore: add beginnings of nix

This commit is contained in:
Anna 2021-10-03 23:20:29 -04:00
parent 095ceadc78
commit 4145433b7e
1 changed files with 10 additions and 0 deletions

10
default.nix Normal file
View File

@ -0,0 +1,10 @@
let
sources = import ./nix/sources.nix { };
pkgs = import sources.nixpkgs { overlays = [ (import sources.mozilla) ]; };
in
pkgs.mkShell {
buildInputs = [
(pkgs.rustChannelOf { date = "2021-09-20"; channel = "nightly"; }).rust
pkgs.gcc
];
}