hakyll-skeleton/shell.nix
2024-01-09 16:02:58 +10:00

13 lines
217 B
Nix

{
pkgs ? import <nixpkgs> {},
alejandra,
mkShell,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
treefmt # one CLI to format the code tree
];
}