Skip to content

Commit

Permalink
fix: missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnson Hu committed Jan 3, 2025
1 parent dabfb76 commit c6e89e8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions modules/nixos/atuin-autosync.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{mylib, pkgs, ...}:
{
mylib,
pkgs,
config,
...
}:
mylib.mkModule config "atuin-autosync" {
systemd.user.timers.atuin-sync = {
Unit.Description = "Atuin auto sync";
Timer.OnUnitActiveSec = "1h";
Install.WantedBy = [ "timers.target" ];
Install.WantedBy = ["timers.target"];
};

systemd.user.services.atuin-sync = {
Expand Down

0 comments on commit c6e89e8

Please sign in to comment.