mauville/home: implify systemd units

This commit is contained in:
Aly Raffauf 2024-07-06 20:08:53 -04:00
parent 0f523dd24c
commit 4d817c1f72

View file

@ -18,75 +18,57 @@
systemd.user = { systemd.user = {
services = { services = {
backblaze-sync = { backblaze-sync = {
Unit = { Unit.Description = "Backup to Backblaze.";
Description = "Backup to Backblaze.";
}; Service.ExecStart = "${pkgs.writeShellScript "backblaze-sync" ''
Service = { declare -A backups
ExecStart = "${pkgs.writeShellScript "backblaze-sync" '' backups=(
declare -A backups ['/home/aly/pics/camera']="b2://aly-camera"
backups=( ['/home/aly/sync']="b2://aly-sync"
['/home/aly/pics/camera']="b2://aly-camera" ['/mnt/Archive/Archive']="b2://aly-archive"
['/home/aly/sync']="b2://aly-sync" ['/mnt/Media/Audiobooks']="b2://aly-audiobooks"
['/mnt/Archive/Archive']="b2://aly-archive" ['/mnt/Media/Music']="b2://aly-music"
['/mnt/Media/Audiobooks']="b2://aly-audiobooks" )
['/mnt/Media/Music']="b2://aly-music" # Recursively backup folders to B2 with sanity checks.
) for folder in "''${!backups[@]}"; do
# Recursively backup folders to B2 with sanity checks. if [ -d "$folder" ] && [ "$(ls -A "$folder")" ]; then
for folder in "''${!backups[@]}"; do ${lib.getExe pkgs.backblaze-b2} sync --delete $folder ''${backups[$folder]}
if [ -d "$folder" ] && [ "$(ls -A "$folder")" ]; then else
${lib.getExe pkgs.backblaze-b2} sync --delete $folder ''${backups[$folder]} echo "$folder does not exist or is empty."
else exit 1
echo "$folder does not exist or is empty." fi
exit 1 done
fi ''}";
done
''}";
};
}; };
build-hosts = { build-hosts = {
Unit = { Unit.Description = "Build nixosConfiguration for each host.";
Description = "Build nixosConfiguration for each host.";
};
Service = {
ExecStart = "${pkgs.writeShellScript "build-hosts" ''
hosts=(
fallarbor
lavaridge
petalburg
rustboro
)
for h in "''${hosts[@]}"; do Service.ExecStart = "${pkgs.writeShellScript "build-hosts" ''
nix build github:alyraffauf/nixcfg#nixosConfigurations.$h.config.system.build.toplevel hosts=(
done fallarbor
''}"; lavaridge
}; petalburg
rustboro
)
for h in "''${hosts[@]}"; do
nix build github:alyraffauf/nixcfg#nixosConfigurations.$h.config.system.build.toplevel
done
''}";
}; };
}; };
timers = { timers = {
backblaze-sync = { backblaze-sync = {
Unit = { Install.WantedBy = ["timers.target"];
Description = "Daily backups to Backblaze."; Timer.OnCalendar = "*-*-* 03:00:00";
}; Unit.Description = "Daily backups to Backblaze.";
Install = {
WantedBy = ["timers.target"];
};
Timer = {
OnCalendar = "*-*-* 03:00:00";
};
}; };
build-hosts = { build-hosts = {
Unit = { Install.WantedBy = ["timers.target"];
Description = "Build hosts daily."; Timer.OnCalendar = "*-*-* 06:00:00";
}; Unit.Description = "Build hosts daily.";
Install = {
WantedBy = ["timers.target"];
};
Timer = {
OnCalendar = "*-*-* 06:00:00";
};
}; };
}; };
}; };