Home: Add repo-mirror service.
This commit is contained in:
parent
947f01982d
commit
4e94fc40ec
|
@ -6,7 +6,7 @@
|
||||||
}@args:
|
}@args:
|
||||||
let
|
let
|
||||||
bash = import <home/program/bash> args;
|
bash = import <home/program/bash> args;
|
||||||
script = pkgs.writeText "backupScript" ''
|
script = pkgs.writeText "backup-script" ''
|
||||||
source ${bash.modulesFile}
|
source ${bash.modulesFile}
|
||||||
|
|
||||||
function report() {
|
function report() {
|
||||||
|
@ -81,7 +81,7 @@ in
|
||||||
{
|
{
|
||||||
systemd.services.backup = util.mkStaticSystemdService {
|
systemd.services.backup = util.mkStaticSystemdService {
|
||||||
enable = true;
|
enable = true;
|
||||||
description = "Home system backup.";
|
description = "Home system backup";
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
path = with pkgs; [
|
path = with pkgs; [
|
||||||
bashInteractive
|
bashInteractive
|
||||||
|
|
52
host/x86_64-linux/home/RepoMirror.nix
Normal file
52
host/x86_64-linux/home/RepoMirror.nix
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
__findFile,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
secret,
|
||||||
|
util,
|
||||||
|
...
|
||||||
|
}@args:
|
||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
gpg.ssh.allowedSignersFile = toString secret.crypto.sign.git.allowed;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.repo-mirror = util.mkStaticSystemdService {
|
||||||
|
enable = true;
|
||||||
|
description = "NixOS repo mirror push service";
|
||||||
|
serviceConfig.Type = "oneshot";
|
||||||
|
environment.GIT_SSH_COMMAND = "ssh -o UserKnownHostsFile=/root/.ssh/known_hosts";
|
||||||
|
path = with pkgs; [
|
||||||
|
bash
|
||||||
|
coreutils
|
||||||
|
git
|
||||||
|
openssh
|
||||||
|
];
|
||||||
|
script = ''
|
||||||
|
pushd /tmp
|
||||||
|
rm -rf ./nixos-mirror
|
||||||
|
git clone --single-branch --branch=main ${config.module.const.url} ./nixos-mirror
|
||||||
|
pushd ./nixos-mirror
|
||||||
|
git verify-commit HEAD && git fsck || {
|
||||||
|
echo "Verification failed."
|
||||||
|
exit 1
|
||||||
|
};
|
||||||
|
git remote add github git@github.com:voronind-com/nix.git
|
||||||
|
git remote add codeberg git@codeberg.org:voronind/nix.git
|
||||||
|
timeout 10m git push --force github main
|
||||||
|
timeout 10m git push --force codeberg main
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.timers.repo-mirror = {
|
||||||
|
wantedBy = [ "timers.target" ];
|
||||||
|
timerConfig = {
|
||||||
|
OnCalendar = "*-*-* 05:55:00";
|
||||||
|
Persistent = true;
|
||||||
|
Unit = "repo-mirror.service";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue