blob: 60c72e6a0575aa9db36edfbf82b35e9fbe7858a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
pkgs,
sysLib,
...
}: let
activate = sysLib.writeShellScriptWithLibrary {
dependencies = builtins.attrValues {inherit (pkgs) jq gawk curl coreutils libuuid nix git;};
name = "activate";
src = ./01_activate.sh;
replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}";};
};
install = sysLib.writeShellScriptWithLibrary {
dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;};
name = "install";
src = ./01_install.sh;
replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}";};
};
setup = sysLib.writeShellScriptWithLibrary {
dependencies = builtins.attrValues {inherit (pkgs) dash gawk curl git nix gnugrep nixos-install-tools coreutils libuuid;};
name = "setup";
src = ./02_setup.sh;
replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}";};
};
config_setup = sysLib.writeShellScriptWithLibrary {
dependencies = builtins.attrValues {inherit (pkgs) git neovim;};
name = "config_setup";
src = ./03_config_setup.sh;
replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}";};
};
ensure_config_variables = sysLib.writeShellScriptWithLibrary {
dependencies = builtins.attrValues {inherit (pkgs) jq dash;};
name = "ensure_config_variables";
src = ./99_ensure_config_variables.sh;
};
output = {inherit activate install setup config_setup ensure_config_variables;};
in
output
# vim: ts=2
|