feat: add minimalistic nix shell

This commit is contained in:
Yoru
2024-12-02 20:21:08 +01:00
parent 473fa97733
commit b3d2ba1384

7
default.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.cargo
pkgs.rustc
];
}