diff options
author | ene <ene@sils.li> | 2023-03-21 16:34:52 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:39:09 +0100 |
commit | 90189ad745677ee8b5577496135b5e2a7b4e47c6 (patch) | |
tree | 05e646eb7546588e6d61442a8e963bc8775bbb92 /bootstrap | |
parent | Fix(lib): Add 'mktemp' as a default dependency (diff) | |
download | nixos-config-90189ad745677ee8b5577496135b5e2a7b4e47c6.tar.gz nixos-config-90189ad745677ee8b5577496135b5e2a7b4e47c6.zip |
Fix(bootstrap/install): Add 'wc' as dependency
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/install/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix index 642b9054..2007e2be 100644 --- a/bootstrap/install/default.nix +++ b/bootstrap/install/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash curl gawk btrfs-progs]; + dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils;}; name = "install"; script = ./install.sh; lib = import ../../lib {inherit pkgs shell-library;}; |