mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
17 lines
346 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|