dalaran.fr/shell.nix
2025-01-17 16:33:34 +01:00

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
];
}