nix: init flake

Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Malte Poll 2023-09-04 18:45:13 +02:00 committed by Malte Poll
parent ac2fca344d
commit b25ae9a3be
4 changed files with 136 additions and 14 deletions

7
nix/shells/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bazel_6
git
];
}