diff options
author | ene <ene@sils.li> | 2023-03-21 17:16:06 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 17:16:06 +0100 |
commit | cd20c6f32761fb318ec45cb76e3053637b0cfa4a (patch) | |
tree | bdaee82b712eed11a5a16cc1711ab58a5f352019 /bootstrap | |
parent | Fix(bootstrap): Use experimental nix features (diff) | |
download | nixos-config-cd20c6f32761fb318ec45cb76e3053637b0cfa4a.tar.gz nixos-config-cd20c6f32761fb318ec45cb76e3053637b0cfa4a.zip |
Fix(bootstrap/install): Use 'git' dependency
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 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;}; |