2025-01-30 14:48:17 -05:00

36 lines
859 B
Nix

{
config,
pkgs,
lib,
...
}:
let
cfg = config.nmasur.presets.services.notes-git-sync;
in
{
options.nmasur.presets.services.notes-git-sync.enable = lib.mkEnableOption "Sync notes to folder";
config = lib.mkIf cfg.enable {
# Sync notes for Nextcloud automatically
systemd.user.timers.refresh-notes = {
Timer = {
OnCalendar = "*-*-* *:0/10:50"; # Every 10 minutes
Unit = "refresh-notes.service";
};
};
systemd.user.services.refresh-notes = {
Unit.Description = "Get latest notes.";
Service = {
Type = "oneshot";
ExecStartPre = "${pkgs.git}/bin/git -C /data/git/notes reset --hard master";
ExecStart = "${pkgs.git}/bin/git -C /data/git/notes pull";
WorkingDirectory = config.homePath;
Environment = "PATH=${pkgs.openssh}/bin";
};
};
};
}