about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:34:52 +0100
committerene <ene@sils.li>2023-03-21 16:39:09 +0100
commit90189ad745677ee8b5577496135b5e2a7b4e47c6 (patch)
tree05e646eb7546588e6d61442a8e963bc8775bbb92 /bootstrap
parentFix(lib): Add 'mktemp' as a default dependency (diff)
downloadnixos-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.nix2
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;};