khal: Use version from unstable

The version from stable throws errors and sometimes even crashes due to
an incompatibility with pytz.
nazuna
Simon Bruder 2022-07-07 18:03:50 +02:00
parent a44948006c
commit 4af15f2139
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ in
def khal(args):
completed = subprocess.run(["${pkgs.khal}/bin/khal"] + args, capture_output=True)
completed = subprocess.run(["khal"] + args, capture_output=True)
assert completed.returncode == 0
return completed.stdout.decode("utf-8")

View File

@ -68,7 +68,7 @@ let
in
{
home.packages = with pkgs; [
khal
unstable.khal
khard
vdirsyncer
];