nixcfg/hosts/mauville/home.nix

79 lines
2.2 KiB
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
config,
2024-06-14 22:12:04 -04:00
inputs,
2024-04-07 22:16:33 -04:00
lib,
2024-06-14 22:12:04 -04:00
pkgs,
self,
2024-04-07 22:16:33 -04:00
...
}: {
2024-05-21 22:28:52 -04:00
home-manager = {
sharedModules = [
{
xdg.userDirs.music = "/mnt/Media/Music";
ar.home.desktop.hyprland.autoSuspend = false;
2024-05-21 22:28:52 -04:00
}
];
users.aly = lib.mkForce {
imports = [self.homeManagerModules.aly];
2024-05-22 20:27:08 -04:00
systemd.user = {
services = {
backblaze-sync = {
2024-07-06 20:08:53 -04:00
Unit.Description = "Backup to Backblaze.";
Service.ExecStart = "${pkgs.writeShellScript "backblaze-sync" ''
declare -A backups
backups=(
['/home/aly/pics/camera']="b2://aly-camera"
['/home/aly/sync']="b2://aly-sync"
['/mnt/Archive/Archive']="b2://aly-archive"
['/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
if [ -d "$folder" ] && [ "$(ls -A "$folder")" ]; then
${lib.getExe pkgs.backblaze-b2} sync --delete $folder ''${backups[$folder]}
else
echo "$folder does not exist or is empty."
exit 1
fi
done
''}";
2024-05-22 20:27:08 -04:00
};
build-hosts = {
2024-07-06 20:08:53 -04:00
Unit.Description = "Build nixosConfiguration for each host.";
Service.ExecStart = "${pkgs.writeShellScript "build-hosts" ''
hosts=(
fallarbor
lavaridge
petalburg
rustboro
)
2024-07-06 20:08:53 -04:00
for h in "''${hosts[@]}"; do
nix build github:alyraffauf/nixcfg#nixosConfigurations.$h.config.system.build.toplevel
done
''}";
2024-05-22 20:27:08 -04:00
};
};
timers = {
backblaze-sync = {
2024-07-06 20:08:53 -04:00
Install.WantedBy = ["timers.target"];
Timer.OnCalendar = "*-*-* 03:00:00";
Unit.Description = "Daily backups to Backblaze.";
2024-05-22 20:27:08 -04:00
};
build-hosts = {
2024-07-06 20:08:53 -04:00
Install.WantedBy = ["timers.target"];
Timer.OnCalendar = "*-*-* 06:00:00";
Unit.Description = "Build hosts daily.";
2024-05-22 20:27:08 -04:00
};
};
};
};
};
2024-03-28 19:52:15 -04:00
}