about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:45:42 +0100
committerene <ene@sils.li>2023-03-21 16:45:42 +0100
commit444b6856ee21b08094b71918a4f40c2a005be8f0 (patch)
treeba25c226544a3cd976316080f36a53c034afdd58 /bootstrap
parentFix(bootstrap/install): Add 'lsblk' to dependencies (diff)
downloadnixos-config-444b6856ee21b08094b71918a4f40c2a005be8f0.tar.gz
nixos-config-444b6856ee21b08094b71918a4f40c2a005be8f0.zip
Fix(bootstrap/install): Add 'sgdisk' 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 2d0a4617..ffba2b13 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 libuuid;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};