24 lines
300 B
Nix

{
writeShellApplication,
nheko,
telegram-desktop,
thunderbird,
}:
writeShellApplication {
name = "open-messaging";
runtimeInputs = [
nheko
telegram-desktop
thunderbird
];
text = ''
thunderbird &
sleep 0.1
nheko &
sleep 0.1
telegram-desktop &
'';
}