about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:44:17 +0100
committerene <ene@sils.li>2023-03-21 16:44:17 +0100
commit6347cdf05b95ff0ca729ea5e38a252f75dfb9c6c (patch)
treeb313f193094912c84d74b46bb44d9768a14cb79c /bootstrap
parentFix(bootstrap/install): Add 'wc' as dependency (diff)
downloadnixos-config-6347cdf05b95ff0ca729ea5e38a252f75dfb9c6c.tar.gz
nixos-config-6347cdf05b95ff0ca729ea5e38a252f75dfb9c6c.zip
Fix(bootstrap/install): Add 'lsblk' to dependencies
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 2007e2be..2d0a4617 100644
--- a/bootstrap/install/default.nix
+++ b/bootstrap/install/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};