diff options
author | ene <ene@sils.li> | 2023-03-21 16:58:58 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 17:08:47 +0100 |
commit | 2e63f1fc53ada3791f2182382648136f29648379 (patch) | |
tree | c5a578c64137bf9c077dca3a9e8e3e0d84894f13 /bootstrap | |
parent | Fix(lib): Add 'dash' as default dependency (diff) | |
download | nixos-config-2e63f1fc53ada3791f2182382648136f29648379.tar.gz nixos-config-2e63f1fc53ada3791f2182382648136f29648379.zip |
Fix(bootstrap/setup): Add all needed dependencies
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 5cb36d51..8a0f712e 100644 --- a/bootstrap/setup/default.nix +++ b/bootstrap/setup/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [dash gawk curl git]; + dependencies = with pkgs; [dash gawk curl git nix gnugrep nixos-install-tools coreutils]; name = "setup"; script = ./setup.sh; lib = import ../../lib {inherit pkgs shell-library;}; |