@jaspermayone.com's dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update knot sync

+9 -1
+9 -1
modules/knot/sync.nix
··· 174 174 }; 175 175 }; 176 176 177 + systemd.timers.knot-sync = { 178 + description = "Debounce timer for Knot sync"; 179 + timerConfig = { 180 + OnActiveSec = "5s"; 181 + AccuracySec = "1s"; 182 + }; 183 + }; 184 + 177 185 systemd.paths.knot-sync = { 178 186 description = "Watch for new Knot repositories"; 179 187 wantedBy = [ "multi-user.target" ]; 180 188 pathConfig = { 181 189 PathModified = cfg.repoDir; 182 - Unit = "knot-sync.service"; 190 + Unit = "knot-sync.timer"; 183 191 MakeDirectory = true; 184 192 }; 185 193 };