nixpkgs/nixos/modules/services/desktops/gnome/gnome-online-accounts.nix
2026-03-13 16:53:28 +01:00

45 lines
728 B
Nix

# GNOME Online Accounts daemon.
{
config,
pkgs,
lib,
...
}:
{
meta = {
teams = [ lib.teams.gnome ];
};
###### interface
options = {
services.gnome.gnome-online-accounts = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Whether to enable GNOME Online Accounts daemon, a service that provides
a single sign-on framework for the GNOME desktop.
'';
};
};
};
###### implementation
config = lib.mkIf config.services.gnome.gnome-online-accounts.enable {
environment.systemPackages = [ pkgs.gnome-online-accounts ];
services.dbus.packages = [ pkgs.gnome-online-accounts ];
};
}