17 lines
242 B
Nix
17 lines
242 B
Nix
{ pkgs ? import <nixpkgs> { }, ... }:
|
|
pkgs.mkShell {
|
|
name = "hugo-shell";
|
|
|
|
packages = with pkgs; [
|
|
nixfmt-rfc-style
|
|
nil
|
|
ltex-ls
|
|
proselint
|
|
mdformat
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
hugo
|
|
dart-sass
|
|
];
|
|
}
|