dalaran.fr/shell.nix

17 lines
228 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
];
}