diff options
author | Julien Dessaux | 2024-01-31 14:23:40 +0100 |
---|---|---|
committer | Julien Dessaux | 2024-01-31 14:23:40 +0100 |
commit | e86c501bc7e9dda3956a0be4e6ae849a720dc696 (patch) | |
tree | 5d9c8aadcf77cc68eca2b158414c8910a73f6f00 | |
parent | Added skyward flight book article (diff) | |
download | www-e86c501bc7e9dda3956a0be4e6ae849a720dc696.tar.gz www-e86c501bc7e9dda3956a0be4e6ae849a720dc696.tar.bz2 www-e86c501bc7e9dda3956a0be4e6ae849a720dc696.zip |
Added a shell.nix
-rw-r--r-- | shell.nix | 6 |
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 ]; +} |