From 4aa5f378d2e3f6cb570ec85daa17115097a8d371 Mon Sep 17 00:00:00 2001 From: ene Date: Mon, 20 Feb 2023 08:48:00 +0100 Subject: Feat(bootstrap): Add a script for quick activation --- bootstrap/install/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bootstrap/install/default.nix (limited to 'bootstrap/install/default.nix') 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;} -- cgit 1.4.1