about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/shell.nix
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    hugo
  ];
}