www/shell.nix
2024-01-31 14:23:40 +01:00

6 lines
110 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hugo";
nativeBuildInputs = with pkgs; [ hugo ];
}