diff options
author | ene <ene@sils.li> | 2023-03-21 17:13:09 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 17:13:09 +0100 |
commit | 7125e722349e7cc19968133c70969a6349d9fec1 (patch) | |
tree | 3eee833f989576bcb3971e3a94e00e11ba641834 /bootstrap | |
parent | Fix(bootstrap/setup): Update to new shell-lib version (diff) | |
download | nixos-config-7125e722349e7cc19968133c70969a6349d9fec1.tar.gz nixos-config-7125e722349e7cc19968133c70969a6349d9fec1.zip |
Fix(bootstrap): Add additional dependencies
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/install/default.nix | 2 | ||||
-rw-r--r-- | bootstrap/setup/default.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix index 118aee4c..2aeae54a 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;}; + dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix;}; name = "install"; script = ./install.sh; lib = import ../../lib {inherit pkgs shell-library;}; diff --git a/bootstrap/setup/default.nix b/bootstrap/setup/default.nix index 8a0f712e..8e162d88 100644 --- a/bootstrap/setup/default.nix +++ b/bootstrap/setup/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [dash gawk curl git nix gnugrep nixos-install-tools coreutils]; + dependencies = builtins.attrValues {inherit (pkgs) dash gawk curl git nix gnugrep nixos-install-tools coreutils;}; name = "setup"; script = ./setup.sh; lib = import ../../lib {inherit pkgs shell-library;}; |