dalaran.fr/shell.nix

14 lines
189 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-09-22 20:38:03 +02:00
nativeBuildInputs = with pkgs; [
hugo
];
}