www/shell.nix

7 lines
110 B
Nix
Raw Normal View History

2024-01-31 14:23:40 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hugo";
nativeBuildInputs = with pkgs; [ hugo ];
}