3
0
Fork 0
forked from mirrors/nixpkgs

Add Nylas mail module. Still needs keyring configuration

This commit is contained in:
John Ramsden 2017-06-28 15:56:41 -07:00
parent 69ecd62a95
commit 3fddb48020
No known key found for this signature in database
GPG key ID: 2E989DFAD8B09FD0

View file

@ -0,0 +1,43 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.nylas-mail;
defaultUser = "nylas-mail";
in {
###### interface
options = {
services.nylas-mail = {
enable = mkEnableOption ''
nylas-mail - Open-source mail client built on the modern web with Electron, React, and Flux
'';
gnome3-keyring = mkOption {
type = types.bool;
default = true;
description = "Enable gnome3 keyring for nylas-mail.";
};
package = mkOption {
type = types.package;
default = pkgs.nylas-mail;
defaultText = "pkgs.nylas-mail";
example = literalExample "pkgs.nylas-mail";
description = ''
nylas-mail package to use.
'';
};
};
};
###### implementation
config = mkIf cfg.enable {
};
}