mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
Compare commits
2 Commits
7a7b43c723
...
d99b4ca5de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d99b4ca5de | ||
|
|
64f4dadb80 |
@@ -34,6 +34,13 @@ let
|
||||
send_mail = mkSmtp account;
|
||||
mailboxes = account.meli.mailboxAliases;
|
||||
}
|
||||
// lib.optionalAttrs (account.flavor == "fastmail.com") {
|
||||
server_username = account.userName;
|
||||
server_password_command = lib.concatMapStringsSep " " lib.escapeShellArg account.passwordCommand;
|
||||
format = "jmap";
|
||||
server_url = "https://api.fastmail.com/jmap/session";
|
||||
use_token = true;
|
||||
}
|
||||
// account.meli.settings
|
||||
);
|
||||
|
||||
|
||||
@@ -216,7 +216,7 @@ in
|
||||
example = lib.literalExpression ''
|
||||
let
|
||||
nvimEarlyInit = lib.mkOrder 500 "set rtp+=vim.opt.rtp:prepend('/home/user/myplugin')";
|
||||
nvimLateInit = lib.mkAfter 1000 "vim.opt.signcolumn = 'auto:1-3'";
|
||||
nvimLateInit = lib.mkAfter "vim.opt.signcolumn = 'auto:1-3'";
|
||||
in
|
||||
lib.mkMerge [ nvimEarlyInit nvimLateInit ];
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user