.dotfiles/dot_config/flake/home/home-backup.nix
2025-07-18 23:06:28 -04:00

17 lines
346 B
Nix

{config, ...}: {
systemd.user.services = {
daily_backup = {
Unit = {
Description = "Run a backup script";
};
Install = {
WantedBy = ["default.target"];
};
Service = {
Type = "oneshot";
ExecStart = "${config.home.homeDirectory}/.local/bin/,daily_backup";
};
};
};
}