12 lines
127 B
Nix
12 lines
127 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
emacs-nox
|
|
hugo
|
|
stork
|
|
html-tidy
|
|
];
|
|
}
|