1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
config,
systemConfig,
lib,
pkgs,
...
}:
{
options.zpha.programs.gnome-calendar.enable = lib.mkEnableOption "gnome-calendar";
config = lib.mkIf config.zpha.programs.gnome-calendar.enable {
zpha.programs.gnome-online-accounts.enable = true;
users.users.zaphyra.maid.packages = with pkgs; [ gnome-calendar ];
};
}