28 lines
351 B
Nix

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