diff options
Diffstat (limited to '')
-rw-r--r-- | bootstrap/install/default.nix (renamed from bootstrap/default.nix) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/default.nix b/bootstrap/install/default.nix index 6fab9a2d..68580d41 100644 --- a/bootstrap/default.nix +++ b/bootstrap/install/default.nix @@ -4,9 +4,9 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash]; + dependencies = with pkgs; [jq dash curl grep]; name = "install"; script = ./install.sh; - lib = import ../lib {inherit pkgs shell-library;}; + lib = import ../../lib {inherit pkgs shell-library;}; in lib.makeShellScriptWithLibrary {inherit dependencies name script;} |