1 # GNOME Online Accounts daemon.
3 { config, pkgs, lib, ... }:
8 maintainers = lib.teams.gnome.members;
15 services.gnome.gnome-online-accounts = {
17 enable = lib.mkOption {
18 type = lib.types.bool;
21 Whether to enable GNOME Online Accounts daemon, a service that provides
22 a single sign-on framework for the GNOME desktop.
33 config = lib.mkIf config.services.gnome.gnome-online-accounts.enable {
35 environment.systemPackages = [ pkgs.gnome-online-accounts ];
37 services.dbus.packages = [ pkgs.gnome-online-accounts ];