about summary refs log tree commit diff
path: root/website/blog/shell.nix
blob: d1b4f49942bc7e4b30612095160138bc2d3f8673 (plain) (blame)
1
2
3
4
5
6
7
8
let
  pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
  buildInputs = with pkgs; [
    hugo
  ];
}