Add shell.nix

This commit is contained in:
distorsion 2025-01-24 23:25:45 +01:00
parent 6f402f2150
commit fc69b6b08a

6
shell.nix Normal file
View file

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