Add utils dev shell

This commit is contained in:
Riley Apeldoorn 2023-07-06 11:57:44 +02:00 committed by Riley Apeldoorn
parent 666a75f844
commit 978fc8186d
1 changed files with 6 additions and 0 deletions

View File

@ -77,6 +77,12 @@
overlays = {
default = (import ./shared/overlay.nix);
};
devShells."x86_64-linux"."utils" = let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in pkgs.mkShell {
buildInputs = import ./shared/env.nix pkgs;
};
};