This commit is contained in:
Robin Appelman 2022-07-12 15:44:13 +02:00
commit 79a7781db4
3 changed files with 3 additions and 1 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/target /target
.direnv
.env .env
result result

View file

@ -26,7 +26,7 @@
# `nix develop` # `nix develop`
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ rustc cargo ]; nativeBuildInputs = with pkgs; [ rustc cargo bacon ];
}; };
} }
); );