infrastructure/scripts/default.nix

32 lines
492 B
Nix

{ pkgs, ... }:
let
substitutions = {
inherit (pkgs)
bash
colmena
coreutils
git
jq;
};
mkShellScript = name: (pkgs.substituteAll ({
inherit name;
src = ./. + "/${name}.sh";
dir = "/bin/";
isExecutable = true;
checkPhase = ''
${pkgs.stdenv.shellDryRun} "$target"
'';
} // substitutions));
scripts = [
"ns-update"
"launch-vm"
# "mk-backup-key"
# "wg-setup"
];
in
builtins.map mkShellScript scripts