mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01:00
feat: write iamb configuration further
This commit is contained in:
parent
508bfc7617
commit
7e1f4f4f89
1 changed files with 37 additions and 2 deletions
|
|
@ -1,9 +1,45 @@
|
||||||
|
{ pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
programs.iamb = {
|
programs.iamb = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = inputs.iamb.packages.${pkgs.stdenv.hostPlatform.system}.default;
|
||||||
settings = {
|
settings = {
|
||||||
profiles.user.user_id = "@liv:liv.town";
|
profiles.user = {
|
||||||
|
user_id = "@liv:liv.town";
|
||||||
|
layout.style = "restore";
|
||||||
|
};
|
||||||
|
typing_notice_send = false;
|
||||||
|
typing_notice_display = true;
|
||||||
|
reaction_display = true;
|
||||||
|
read_receipt_send = false;
|
||||||
|
read_receipt_display = false;
|
||||||
|
sort = {
|
||||||
|
chats = [
|
||||||
|
"favorite"
|
||||||
|
"recent"
|
||||||
|
"unread"
|
||||||
|
"name"
|
||||||
|
];
|
||||||
|
members = [
|
||||||
|
"power"
|
||||||
|
"id"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
macros.normal = {
|
||||||
|
";" = ":";
|
||||||
|
gc = ":chats<Enter>";
|
||||||
|
gr = ":rooms<Enter>";
|
||||||
|
gs = ":spaces<Enter>";
|
||||||
|
gu = ":unreads<Enter>";
|
||||||
|
uc = ":unreads clear<Enter>";
|
||||||
|
r = ":reply<Enter>";
|
||||||
|
mq = ":cancel<Enter>y";
|
||||||
|
me = ":editor<Enter>";
|
||||||
|
J = ":tabprevious<Enter>y";
|
||||||
|
K = ":tabnext<Enter>";
|
||||||
|
};
|
||||||
notifications.enabled = false;
|
notifications.enabled = false;
|
||||||
|
username_display = "displayname";
|
||||||
image_preview = {
|
image_preview = {
|
||||||
protocol.type = "kitty";
|
protocol.type = "kitty";
|
||||||
protocol.size = {
|
protocol.size = {
|
||||||
|
|
@ -11,7 +47,6 @@
|
||||||
width = 66;
|
width = 66;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
username_display = "displayname";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue