diff options
author | ene <ene@sils.li> | 2023-03-21 18:55:51 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 18:55:51 +0100 |
commit | 70a1351c517576677fc0086eabe98707ede1fff2 (patch) | |
tree | 19a82f04d8e2563c09873b1ef449032df16f91f0 /bootstrap | |
parent | Fix(host/lahmu): Add new settings after reinstall (diff) | |
download | nixos-config-70a1351c517576677fc0086eabe98707ede1fff2.tar.gz nixos-config-70a1351c517576677fc0086eabe98707ede1fff2.zip |
Fix(bootstrap/activate): Add missing dependencies
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/activate/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix index 91df2dc8..9d01e57a 100644 --- a/bootstrap/activate/default.nix +++ b/bootstrap/activate/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash gawk curl]; + dependencies = builtins.attrValues {inherit (pkgs) jq gawk curl coreutils libuuid nix git;}; name = "activate"; script = ./activate.sh; lib = import ../../lib {inherit pkgs shell-library;}; |