about summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-03-13 21:00:24 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-03-13 21:00:24 +0100
commit2e035d6d27713a5482e0fd2ae5c883c5eead7b24 (patch)
tree32b978f57dd0592fa559b52134a84cab4487aaab /shell.nix
parent52f6fea7f826d6903256d30a966596a5de4ff4a1 (diff)
downloadkronika-2e035d6d27713a5482e0fd2ae5c883c5eead7b24.tar.gz
kronika-2e035d6d27713a5482e0fd2ae5c883c5eead7b24.zip
Add dev tools
* sssg - autoreload
* shell.nix, .envrc - use nix lowdown
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..49f5fd9
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+{ pkgs ? import <nixpkgs> {} }:
+pkgs.mkShell {
+  buildInputs = with pkgs; [
+    lowdown
+  ];
+}