Files
nixpkgs/nixos/modules/programs/geary.nix
2026-03-13 16:53:28 +01:00

28 lines
456 B
Nix

{
config,
pkgs,
lib,
...
}:
let
cfg = config.programs.geary;
in
{
meta = {
teams = [ lib.teams.gnome ];
};
options = {
programs.geary.enable = lib.mkEnableOption "Geary, a Mail client for GNOME";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ pkgs.geary ];
programs.dconf.enable = true;
services.gnome.gnome-keyring.enable = true;
services.gnome.gnome-online-accounts.enable = true;
};
}