13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs ? import <nixpkgs> { }, ... }:
|
|
pkgs.mkShell {
|
|
name = "hugo-shell";
|
|
|
|
packages = with pkgs; [
|
|
nixfmt-rfc-style
|
|
nil
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
hugo
|
|
];
|
|
}
|