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;
|
send_mail = mkSmtp account;
|
||||||
mailboxes = account.meli.mailboxAliases;
|
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
|
// account.meli.settings
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -215,10 +215,10 @@ in
|
|||||||
default = "";
|
default = "";
|
||||||
example = lib.literalExpression ''
|
example = lib.literalExpression ''
|
||||||
let
|
let
|
||||||
nvimEarlyInit = lib.mkOrder 500 "set rtp+=vim.opt.rtp:prepend('/home/user/myplugin')";
|
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
|
in
|
||||||
lib.mkMerge [ nvimEarlyInit nvimLateInit ];
|
lib.mkMerge [ nvimEarlyInit nvimLateInit ];
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
Content to be added to {file}`init.lua`.
|
Content to be added to {file}`init.lua`.
|
||||||
|
|||||||
Reference in New Issue
Block a user