diff options
-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;}; |