nixcfg/hosts/mauville/home.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
inputs,
config,
pkgs,
lib,
...
}: {
2024-05-21 22:28:52 -04:00
home-manager = {
sharedModules = [
{
xdg.userDirs.music = "/mnt/Media/Music";
alyraffauf.desktop.hyprland.autoSuspend = false;
alyraffauf.desktop.sway.autoSuspend = false;
}
];
users.aly = {
imports = [../../aly.nix];
2024-05-22 20:27:08 -04:00
systemd.user = {
services.backblaze-sync = {
Unit = {
Description = "Backup to Backblaze.";
After = ["network.target"];
};
Install = {
WantedBy = ["default.target"];
};
Service = {
ExecStart = "${pkgs.writeShellScript "backblaze-sync" ''
BACKBLAZE=${lib.getExe pkgs.backblaze-b2}
2024-05-22 20:27:08 -04:00
$BACKBLAZE sync --delete /mnt/Media/Music b2://aly-music
$BACKBLAZE sync --delete /mnt/Media/Audiobooks b2://aly-audiobooks
$BACKBLAZE sync --delete /mnt/Archive/Archive b2://aly-archive
2024-05-22 20:27:08 -04:00
$BACKBLAZE sync --delete /home/aly/sync b2://aly-sync
$BACKBLAZE sync --delete /home/aly/pics/camera b2://aly-camera
''}";
};
};
timers.backblaze-sync = {
Unit = {
Description = "Daily backups to Backblaze.";
};
Install = {
WantedBy = ["timers.target"];
};
Timer = {
OnCalendar = "*-*-* 03:00:00";
};
};
};
};
2024-05-21 22:28:52 -04:00
users.dustin = import ../../dustin.nix;
};
2024-03-28 19:52:15 -04:00
}