GNOME/Calendar

From NixOS Wiki
Revision as of 09:51, 19 May 2020 by Mic92 (talk | contribs) (Created page with "The [https://wiki.gnome.org/Apps/Calendar Gnome calendar] is the desktop calendar application built into GNOME. == Using Gnome Calendar outside of GNOME == To use the gnome...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The Gnome calendar is the desktop calendar application built into GNOME.

Using Gnome Calendar outside of GNOME

To use the gnome calendar outside of gnome, you need the following lines in your configuration.nix:

{
  programs.dconf.enable = true;
  services.gnome3.evolution-data-server.enable = true;
  # optional to use google/nextcloud calendar
  services.gnome3.gnome-online-accounts.enable = true;
  # optional to use google/nextcloud calendar
  services.gnome3.gnome-keyring.enable = true;
}

External calendar such as google/nextcloud can be only added via the gnome-control-center:

$ nix-shell -p gnome3.gnome-control-center --run "gnome-control-center"

Than add your accounts in the "Online Accounts" submenu.

To get alarm reminder you need to start the evolution-alarm-notify deamon provided the gnome3.evolution-data-server package. When you enable services.gnome3.evolution-data-server.enable it will add a desktop autostart entry to /run/current-system/sw/etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop. If your desktop manager does not process autostart entries, you can use dex instead:

$ dex --autostart

As an alternative you can start libexec/evolution-data-server/evolution-alarm-notify from the gnome3.evolution-data-server directly.