this repo has no description
1{ pkgs, ... }:
2{
3 launchd.agents.plan-sync = {
4 enable = pkgs.stdenv.isDarwin;
5 config = {
6 Label = "plan-sync";
7
8 ProgramArguments = [
9 "curl"
10 "--netrc-optional"
11 "--silent"
12 "--show-error"
13 "-F"
14 "plan=</Users/hauleth/.plan"
15 "https://plan.cat/stdin"
16 ];
17
18 WatchPaths = [
19 "/Users/hauleth/.plan"
20 ];
21
22 StandardErrorPath = "/Users/hauleth/.local/state/launchd/logs/plan-sync.stderr";
23 };
24 };
25}