config/modules/services/wifibackup/default.nix

53 lines
1.5 KiB
Nix
Raw Normal View History

2024-06-06 01:57:00 +03:00
{
lib,
config,
pkgs,
...
2024-06-06 02:13:12 +03:00
}: {
2024-06-06 01:57:00 +03:00
options.mj.services.wifibackup = with lib.types; {
enable = lib.mkEnableOption "enable wifi code backups to M-Active";
fromPath = lib.mkOption {
type = path;
default = "/etc/NetworkManager/system-connections";
};
toPath = lib.mkOption {
type = path;
example = "/home/motiejus/M-Active/wifi";
};
toUser = lib.mkOption {
type = str;
example = "motiejus";
};
};
config = with config.mj.services.wifibackup;
lib.mkIf enable {
systemd.timers.wifibackup = {
description = "wifibackup to M-Active";
wantedBy = ["timers.target"];
timerConfig.OnCalendar = "*-*-* 22:00:00 UTC";
};
systemd.services.wifibackup = {
description = "backup ${fromPath} to ${toPath}";
serviceConfig = {
Type = "oneshot";
User = "root";
2024-06-06 02:04:35 +03:00
SuccessExitStatus = [0 1];
2024-06-06 02:22:30 +03:00
RemainAfterExit = true;
2024-06-06 01:57:00 +03:00
};
2024-06-06 02:13:12 +03:00
script = ''
sed -i -E '/^(uuid|interface-name)=/d' ${fromPath}/*.nmconnection
exec ${pkgs.unison}/bin/unison \
-sshcmd ${pkgs.openssh}/bin/ssh \
2024-06-06 02:22:30 +03:00
-sshargs "-i /etc/ssh/ssh_host_ed25519_key -o KnownHostsCommand=${pkgs.coreutils}/bin/cat\ /etc/ssh/ssh_host_ed25519_key.pub" \
2024-06-06 02:13:12 +03:00
-batch \
-backuploc local \
-backup "Name *" \
${fromPath} \
ssh://${toUser}@localhost/${toPath}/
'';
2024-06-06 01:57:00 +03:00
};
};
}