about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 17:16:06 +0100
committerene <ene@sils.li>2023-03-21 17:16:06 +0100
commitcd20c6f32761fb318ec45cb76e3053637b0cfa4a (patch)
treebdaee82b712eed11a5a16cc1711ab58a5f352019 /bootstrap
parentFix(bootstrap): Use experimental nix features (diff)
downloadnixos-config-cd20c6f32761fb318ec45cb76e3053637b0cfa4a.tar.gz
nixos-config-cd20c6f32761fb318ec45cb76e3053637b0cfa4a.zip
Fix(bootstrap/install): Use 'git' 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 2aeae54a..71548e90 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 gptfdisk dosfstools toybox nix;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};