summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorDaniel Hill <daniel@gluo.nz>2022-10-31 18:19:46 +1300
committerDaniel Hill <daniel@gluo.nz>2022-10-31 18:19:46 +1300
commite993c948e88675873d416e1833dc4b3ee4da64c8 (patch)
treeb0c3626cba68828caf382a95a52100a1b03edf26 /shell.nix
parent24597d1823617f8cff130d046e0a3dadfbb0478d (diff)
Add NixOS Test Server Setup page.
Signed-off-by: Daniel Hill <daniel@gluo.nz>
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..73fc5ac
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,9 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+with pkgs;
+
+mkShell {
+ buildInputs = [
+ ikiwiki
+ ];
+}