mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
24 lines
396 B
Nix
24 lines
396 B
Nix
{
|
|
# inputs,
|
|
# outputs,
|
|
# lib,
|
|
config,
|
|
# pkgs,
|
|
...
|
|
}: {
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|