Difference between revisions of "GNOME/Calendar"

From NixOS Wiki
Jump to: navigation, search
(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...")
 
m (rollback unauthorized mass edits)
Tag: Rollback
 
(5 intermediate revisions by 5 users not shown)
Line 8: Line 8:
 
{
 
{
 
   programs.dconf.enable = true;
 
   programs.dconf.enable = true;
   services.gnome3.evolution-data-server.enable = true;
+
   services.gnome.evolution-data-server.enable = true;
 
   # optional to use google/nextcloud calendar
 
   # optional to use google/nextcloud calendar
   services.gnome3.gnome-online-accounts.enable = true;
+
   services.gnome.gnome-online-accounts.enable = true;
 
   # optional to use google/nextcloud calendar
 
   # optional to use google/nextcloud calendar
   services.gnome3.gnome-keyring.enable = true;
+
   services.gnome.gnome-keyring.enable = true;
 
}
 
}
 
</syntaxHighlight>
 
</syntaxHighlight>
Line 19: Line 19:
  
 
<syntaxHighlight lang="console">
 
<syntaxHighlight lang="console">
$ nix-shell -p gnome3.gnome-control-center --run "gnome-control-center"
+
$ nix-shell -p gnome.gnome-control-center --run "gnome-control-center"
 
</syntaxHighlight>
 
</syntaxHighlight>
  
Than add your accounts in the "Online Accounts" submenu.
+
then add your accounts in the "Online Accounts" submenu.
  
To get alarm reminder you need to start the evolution-alarm-notify deamon provided the <code>gnome3.evolution-data-server</code> package. When you enable <code>services.gnome3.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:
+
If gnome-control-center will not launch, it's possible the value of XDG_CURRENT_DESKTOP needs to be changed to GNOME during launch. This is the case when using the Hyprland window manager.
 +
 
 +
<syntaxHighlight lang="console">
 +
$ XDG_CURRENT_DESKTOP=GNOME gnome-control-center
 +
</syntaxHighlight>
 +
 
 +
This should launch gnome-control-center and allow you to access the Online Accounts submenu.
 +
 
 +
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">
Line 30: Line 38:
 
</syntaxHighlight>
 
</syntaxHighlight>
  
As an alternative you can start <code>libexec/evolution-data-server/evolution-alarm-notify</code> from the <code>gnome3.evolution-data-server</code> directly.
+
As an alternative you can start <code>libexec/evolution-data-server/evolution-alarm-notify</code> from the <code>gnome.evolution-data-server</code> directly.
 +
 
 +
[[Category:Applications]]

Latest revision as of 11:01, 6 April 2024

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.

If gnome-control-center will not launch, it's possible the value of XDG_CURRENT_DESKTOP needs to be changed to GNOME during launch. This is the case when using the Hyprland window manager.

$ XDG_CURRENT_DESKTOP=GNOME gnome-control-center

This should launch gnome-control-center and allow you to access 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.