diff options
author | ene <ene@sils.li> | 2023-02-20 10:52:35 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-20 10:52:35 +0100 |
commit | f05e45d7f55117a16e44e478b494e0c1b33959db (patch) | |
tree | b3c1c4227a9bc8a0e283b1dfb8f163a1e0c418b5 /bootstrap | |
parent | Feat(flake): Move the in and outputs to separate files (diff) | |
download | nixos-config-f05e45d7f55117a16e44e478b494e0c1b33959db.tar.gz nixos-config-f05e45d7f55117a16e44e478b494e0c1b33959db.zip |
Fix(bootstrap): Record the dependencies
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/activate/default.nix | 2 | ||||
-rw-r--r-- | bootstrap/install/default.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix index 2c410f09..91df2dc8 100644 --- a/bootstrap/activate/default.nix +++ b/bootstrap/activate/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash]; + dependencies = with pkgs; [jq dash gawk curl]; name = "activate"; script = ./activate.sh; lib = import ../../lib {inherit pkgs shell-library;}; diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix index 68580d41..ae9bfad5 100644 --- a/bootstrap/install/default.nix +++ b/bootstrap/install/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash curl grep]; + dependencies = with pkgs; [jq dash curl gawk]; name = "install"; script = ./install.sh; lib = import ../../lib {inherit pkgs shell-library;}; |