NixOS-Configs/home/common/tui.nix
2025-06-09 21:28:18 -05:00

21 lines
357 B
Nix

{ ... }:
{
programs = {
iamb = {
enable = true;
settings = {
default_profile = "personal";
profiles = {
"personal" = {
user_id = "@duckunix:matrix.org";
};
};
settings = {
notifications = {
enabled = true;
};
};
};
};
};
}