about summary refs log tree commit diff
path: root/shell.nix
blob: 28e60c05ddde992c822530b2bbed4c61dc03ef9a (plain) (blame)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  nativeBuildInputs = with pkgs; [
    hugo
  ];
}