Add bats to the dev shell

This commit is contained in:
Sven van Heugten 2026-02-21 18:34:54 +01:00
parent f62f51f77e
commit c39e0c2fd6
No known key found for this signature in database
GPG key ID: D612F88666F4F660

View file

@ -14,7 +14,9 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell { };
devShells.default = pkgs.mkShell {
packages = with pkgs; [ bats ];
};
}
);
}