Initial commit

This commit is contained in:
Harsh Shandilya 2021-11-11 20:33:17 +05:30
commit 05201d7de7
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
10 changed files with 640 additions and 0 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
with import <nixpkgs> { overlays = [ (import <rust-overlay>) ]; };
mkShell {
buildInputs = [
(rust-bin.selectLatestNightlyWith (toolchain:
toolchain.default.override {
extensions = [ "rust-analyzer-preview" "rust-src" "rustfmt-preview" ];
}))
xorg.libxcb
];
}