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/activate/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bootstrap/activate/default.nix (limited to 'bootstrap/activate/default.nix') diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix new file mode 100644 index 00000000..2c410f09 --- /dev/null +++ b/bootstrap/activate/default.nix @@ -0,0 +1,12 @@ +# vim: ts=2 +{ + pkgs, + shell-library, + ... +}: let + dependencies = with pkgs; [jq dash]; + name = "activate"; + script = ./activate.sh; + lib = import ../../lib {inherit pkgs shell-library;}; +in + lib.makeShellScriptWithLibrary {inherit dependencies name script;} -- cgit 1.4.1