aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-06-29 21:33:07 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-06-29 21:33:07 +0200
commitdf85a62383d529e3b75a2eab83a34fb6199c0b97 (patch)
tree30a8813a091284252d6e5b5528515cb7bdf3d85e /shell.nix
parent38f16eaba2f9f6b9e36426f19c792164d6552f78 (diff)
downloadmitjafelicijan.com-df85a62383d529e3b75a2eab83a34fb6199c0b97.tar.gz
Added Nix shell with hugo
Diffstat (limited to '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..fccd746
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
1{ pkgs ? import <nixpkgs> {} }:
2 pkgs.mkShell {
3 nativeBuildInputs = with pkgs.buildPackages; [
4 hugo
5 ];
6}