aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/bootstrap/default.nix b/bootstrap/default.nix
index 76968cd2..f2355aa3 100644
--- a/bootstrap/default.nix
+++ b/bootstrap/default.nix
@@ -3,27 +3,28 @@
sysLib,
...
}: let
+ ensure_config_variables_dependencies = builtins.attrValues {inherit (pkgs) systemd jq dash gnugrep curl;};
replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}/bin/ensure_config_variables";};
activate = sysLib.writeShellScriptWithLibrary {
- dependencies = builtins.attrValues {inherit (pkgs) jq gawk curl coreutils libuuid nix git dash gnugrep;};
+ dependencies = builtins.attrValues {inherit (pkgs) jq gawk curl coreutils libuuid nix git;} ++ ensure_config_variables_dependencies;
name = "activate";
src = ./01_activate;
inherit replacementStrings;
};
install = sysLib.writeShellScriptWithLibrary {
- dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git gnugrep;};
+ dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;} ++ ensure_config_variables_dependencies;
name = "install";
src = ./01_install;
inherit replacementStrings;
};
setup = sysLib.writeShellScriptWithLibrary {
- dependencies = builtins.attrValues {inherit (pkgs) dash gawk curl git nix gnugrep nixos-install-tools coreutils libuuid jq;};
+ dependencies = builtins.attrValues {inherit (pkgs) dash gawk curl git nix gnugrep nixos-install-tools coreutils libuuid;} ++ ensure_config_variables_dependencies;
name = "setup";
src = ./02_setup;
inherit replacementStrings;
};
config_setup = sysLib.writeShellScriptWithLibrary {
- dependencies = builtins.attrValues {inherit (pkgs) git neovim;};
+ dependencies = builtins.attrValues {inherit (pkgs) git neovim;} ++ ensure_config_variables_dependencies;
name = "config_setup";
src = ./03_config_setup;
inherit replacementStrings;