feat: write iamb configuration further

This commit is contained in:
ahwx 2026-02-26 00:30:29 +01:00
parent 508bfc7617
commit 7e1f4f4f89

View file

@ -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";
}; };
}; };
} }