dalaran.fr/shell.nix

9 lines
128 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
name = "hugo-shell";
nativeBuildInputs = with pkgs; [
hugo
];
}