dalaran.fr/shell.nix

17 lines
228 B
Nix
Raw Normal View History

2024-09-22 20:38:03 +02:00
{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
name = "hugo-shell";
packages = with pkgs; [
nixfmt-rfc-style
nil
2024-10-05 11:55:16 +02:00
ltex-ls
proselint
mdformat
];
2024-09-22 20:38:03 +02:00
nativeBuildInputs = with pkgs; [
hugo
];
}