Added a shell.nix

This commit is contained in:
Julien Dessaux 2024-01-31 14:23:40 +01:00
parent 2ce7735ef9
commit e86c501bc7
Signed by: adyxax
GPG key ID: F92E51B86E07177E

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hugo";
nativeBuildInputs = with pkgs; [ hugo ];
}