infrastructure/scripts/default.nix
sinavir e91b0c81f1
All checks were successful
npins update / npins_update (push) Successful in 54s
feat(external services): add netbox config
2023-12-17 12:03:07 +01:00

33 lines
515 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 = [
"check-deployment"
"ns-update"
"launch-vm"
# "mk-backup-key"
# "wg-setup"
];
in
builtins.map mkShellScript scripts