make kitaab update a user unit, use user path

This commit is contained in:
Anish Lakhwara
2023-05-22 21:58:12 +10:00
parent 16c975db35
commit 03b1edc941
5 changed files with 34 additions and 28 deletions
+1
View File
@@ -6,5 +6,6 @@
../profiles/desktop
../profiles/email
../profiles/cal
../profiles/sync/kitaab
];
}
+1
View File
@@ -59,6 +59,7 @@
pandoc
taskwarrior-tui
python3Packages.howdoi
vimwiki-cli
(pkgs.writeScriptBin "jq-repl" ''
#!/usr/bin/env bash
+32
View File
@@ -0,0 +1,32 @@
{ pkgs, ... }:
let
name = "kitaab-sync";
# Note this will fail if index.wiki is open in vim while this runs
mkStartScript = name: pkgs.writeShellScript "${name}.sh" ''
set -euo pipefail
PATH=/run/current-system/sw/bin:/etc/profiles/per-user/anish/bin:
cd /home/anish/kitaab
vimwiki tags rebuild
git add -A
git diff-index --quiet HEAD || git commit -m 'syncing kitaab' # if nothing, don't exit 1
git push
exit 0
'';
in
{
systemd.user.services.kitaab-sync = {
Service = {
ExecStart = "${mkStartScript name}";
};
};
systemd.user.timers.kitaab-sync = {
Install = {
WantedBy = [ "timers.target" ];
PartOf = [ "kitaab-sync.service" ];
};
Timer = {
OnCalendar = [ "hourly" ];
};
};
}