diff options
author | ene <ene@sils.li> | 2023-02-21 13:09:08 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 13:09:08 +0100 |
commit | 63edafacddd64cb2e7ee062d2dd925338070e08d (patch) | |
tree | f8d1acc7fd268f620c8c1dc0c7e73024bd79a157 /bootstrap | |
parent | Fix(system): Move the nixos-config to the main srv subv (diff) | |
download | nixos-config-63edafacddd64cb2e7ee062d2dd925338070e08d.tar.gz nixos-config-63edafacddd64cb2e7ee062d2dd925338070e08d.zip |
Fix(bootstrap): Add dependencies for the setup script
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/setup/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/setup/default.nix b/bootstrap/setup/default.nix index 429fe5f4..5cb36d51 100644 --- a/bootstrap/setup/default.nix +++ b/bootstrap/setup/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [dash]; + dependencies = with pkgs; [dash gawk curl git]; name = "setup"; script = ./setup.sh; lib = import ../../lib {inherit pkgs shell-library;}; |