mirror of
https://github.com/nix-community/home-manager
synced 2024-11-20 01:59:45 +01:00
aerc: update auth mechanisms (#3714)
This commit is contained in:
parent
ab7c8f4a84
commit
305daba44a
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,8 @@ in {
|
|||
'';
|
||||
};
|
||||
smtpAuth = mkOption {
|
||||
type = with types; nullOr (enum [ "none" "plain" "login" ]);
|
||||
type = with types;
|
||||
nullOr (enum [ "none" "plain" "login" "oauthbearer" "xoauth2" ]);
|
||||
default = "plain";
|
||||
example = "auth";
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue