diff options
author | Ben Sima <ben@bensima.com> | 2025-04-23 14:13:08 -0400 |
---|---|---|
committer | Ben Sima <ben@bensima.com> | 2025-05-01 13:18:38 -0400 |
commit | 3f2b9cf67777cabba3f29a05c10b281c534a529d (patch) | |
tree | 890a6af51d4a15f41bb809793ffdefcbe470265e | |
parent | fa8cb6b78842585e73b77dad6902148f6747c652 (diff) |
Reference `pass` with fully qualified path
-rw-r--r-- | lib/calendars.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/calendars.nix b/lib/calendars.nix index 112dad6..250ea7c 100644 --- a/lib/calendars.nix +++ b/lib/calendars.nix @@ -1,4 +1,4 @@ -{lib, config, ...}: +{lib, config, pkgs, ...}: let # names mapped to unique identifiers of calendars calendars = { @@ -29,7 +29,7 @@ let }; radicale = { - passwordCommand = ["pass" "cal.bensima.com"]; + passwordCommand = ["${pkgs.pass}/bin/pass" "cal.bensima.com"]; type = "caldav"; url = "https://cal.bensima.com"; userName = "ben"; @@ -71,7 +71,7 @@ in { "icloud" = { remote = { - passwordCommand = ["pass" "icloud.com/vdirsyncer"]; + passwordCommand = ["${pkgs.pass}/bin/pass" "icloud.com/vdirsyncer"]; type = "caldav"; url = "https://caldav.icloud.com"; userName = "bsima@icloud.com"; |