hakyll-skeleton/shell.nix

13 lines
217 B
Nix
Raw Normal View History

2022-07-22 05:41:43 +00:00
{
pkgs ? import <nixpkgs> {},
alejandra,
mkShell,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
treefmt # one CLI to format the code tree
];
}