home/common | add tui.nix, iamb, chat.yaml

This commit is contained in:
Don Harper 2025-06-09 21:28:18 -05:00
parent f46aa99649
commit 0bd6b8aa99
4 changed files with 32 additions and 1 deletions

21
home/common/tui.nix Normal file
View file

@ -0,0 +1,21 @@
{ ... }:
{
programs = {
iamb = {
enable = true;
settings = {
default_profile = "personal";
profiles = {
"personal" = {
user_id = "@duckunix:matrix.org";
};
};
settings = {
notifications = {
enabled = true;
};
};
};
};
};
}