12 lines
295 B
Nix
12 lines
295 B
Nix
{ ... }:
|
|
{
|
|
programs.dconf.enable = true;
|
|
services = {
|
|
gnome = {
|
|
evolution-data-server.enable = true; # optional to use google/nextcloud calendar
|
|
gnome-online-accounts.enable = true; # optional to use google/nextcloud calendar
|
|
gnome-keyring.enable = true;
|
|
};
|
|
};
|
|
}
|