aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2024-01-31 14:23:40 +0100
committerJulien Dessaux2024-01-31 14:23:40 +0100
commite86c501bc7e9dda3956a0be4e6ae849a720dc696 (patch)
tree5d9c8aadcf77cc68eca2b158414c8910a73f6f00
parentAdded skyward flight book article (diff)
downloadwww-e86c501bc7e9dda3956a0be4e6ae849a720dc696.tar.gz
www-e86c501bc7e9dda3956a0be4e6ae849a720dc696.tar.bz2
www-e86c501bc7e9dda3956a0be4e6ae849a720dc696.zip
Added a shell.nix
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..311494b
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ name = "hugo";
+ nativeBuildInputs = with pkgs; [ hugo ];
+}