diff options
author | ene <ene@sils.li> | 2023-03-21 16:44:17 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:44:17 +0100 |
commit | 6347cdf05b95ff0ca729ea5e38a252f75dfb9c6c (patch) | |
tree | b313f193094912c84d74b46bb44d9768a14cb79c /bootstrap | |
parent | Fix(bootstrap/install): Add 'wc' as dependency (diff) | |
download | nixos-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.nix | 2 |
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;}; |