hakyll-skeleton/shell.nix

13 lines
264 B
Nix
Raw Normal View History

{
pkgs ? import <nixpkgs> {},
mkShell,
}:
with pkgs;
mkShell {
buildInputs = [
nix # Powerful package manager, makes packaging reliable & reproducible
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
];
}