NixOS-Configs/home/common/tui.nix
2025-06-15 16:19:29 -05:00

12 lines
277 B
Nix

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