dalaran.fr/shell.nix

14 lines
189 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
name = "hugo-shell";
packages = with pkgs; [
nixfmt-rfc-style
nil
];
nativeBuildInputs = with pkgs; [
hugo
];
}