GNOME/Calendar: Difference between revisions
imported>Binary-Eater Updated references to gnome3 as gnome. |
imported>NateEag m Fix a few grammar errors |
||
Line 22: | Line 22: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
then add your accounts in the "Online Accounts" submenu. | |||
To get alarm | To get alarm reminders you need to start the evolution-alarm-notify daemon provided by the <code>gnome.evolution-data-server</code> package. When you enable <code>services.gnome.evolution-data-server.enable</code> it will add a desktop autostart entry to <code>/run/current-system/sw/etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop</code>. If your desktop manager does not process autostart entries, you can use [https://github.com/jceb/dex dex] instead: | ||
<syntaxHighlight lang="console"> | <syntaxHighlight lang="console"> |
Revision as of 02:42, 5 November 2022
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.gnome.evolution-data-server.enable = true;
# optional to use google/nextcloud calendar
services.gnome.gnome-online-accounts.enable = true;
# optional to use google/nextcloud calendar
services.gnome.gnome-keyring.enable = true;
}
External calendar such as google/nextcloud can be only added via the gnome-control-center:
$ nix-shell -p gnome.gnome-control-center --run "gnome-control-center"
then add your accounts in the "Online Accounts" submenu.
To get alarm reminders you need to start the evolution-alarm-notify daemon provided by the gnome.evolution-data-server
package. When you enable services.gnome.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 gnome.evolution-data-server
directly.