aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/install/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/install/default.nix')
-rw-r--r--bootstrap/install/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix
new file mode 100644
index 00000000..68580d41
--- /dev/null
+++ b/bootstrap/install/default.nix
@@ -0,0 +1,12 @@
+# vim: ts=2
+{
+ pkgs,
+ shell-library,
+ ...
+}: let
+ dependencies = with pkgs; [jq dash curl grep];
+ name = "install";
+ script = ./install.sh;
+ lib = import ../../lib {inherit pkgs shell-library;};
+in
+ lib.makeShellScriptWithLibrary {inherit dependencies name script;}