nixos-config/nixos/system/all/borg-scripts.nix

25 lines
682 B
Nix
Raw Normal View History

{ pkgs, lib, ... }: {
2021-11-01 09:20:42 +01:00
environment.systemPackages =
let
createScript = command: host: repository:
pkgs.writers.writeBashBin
"borg-${command}-on-${host}-for-${repository}" ''
${pkgs.borgbackup}/bin/borg \
${command} \
2022-09-23 20:29:18 +02:00
--rsh='ssh -i ~/.ssh/palo_rsa.pub' borg@${host}.private:${repository}/. \
2021-11-01 09:20:42 +01:00
"$@"
'';
2022-01-13 13:40:18 +01:00
hosts = [ "pepe" "robi" ];
repositories = [ "pepe" "sterni" "robi" ];
2022-01-23 21:14:24 +01:00
commands = [ "list" "mount" ];
2021-11-01 09:20:42 +01:00
in
lib.flatten (map
(command:
map
(host: map (repository: createScript command host repository) repositories)
hosts)
commands);
}