home/vdirsyncer: fix typo

This commit is contained in:
Gabriel Fontes
2022-09-13 20:27:08 -03:00
parent 8d0dfaf703
commit 8dc631dd6a
+5 -3
View File
@@ -1,6 +1,8 @@
{ pkgs, persistence, lib, config, ... }:
let pass = "${config.programs.password-store.package}/bin/pass";
in {
let
pass = "${config.programs.password-store.package}/bin/pass";
in
{
home.packages = with pkgs; [ vdirsyncer ];
home.persistence = lib.mkIf persistence {
@@ -58,7 +60,7 @@ in {
ExecCondition = ''
/bin/sh -c "${keyring.isUnlocked}"
'';
ExecStart = "${vdirsyncer} sync";
ExecStart = "${pkgs.vdirsyncer}/bin/vdirsyncer sync";
};
};
systemd.user.timers.vdirsyncer = {