1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 08:31:03 +01:00

programs.khal: fix build failure due to null value

This commit is contained in:
7FM 2024-03-02 22:18:14 +01:00
parent 3c7bacf1d4
commit 2c157e22dc

View file

@ -106,8 +106,8 @@ let
};
local = mkOption {
type = types.nullOr (localModule name);
default = null;
type = localModule name;
default = {};
description = ''
Local configuration for the calendar.
'';