Files
dotfiles/pkgs/open-messaging/default.nix

28 lines
467 B
Nix

{
writeShellApplication,
element-desktop,
telegram-desktop,
thunderbird,
discord, # TODO: discord not available for aarch64, this leads to flake evaluation for this arch fail.
}:
writeShellApplication {
name = "open-messaging";
runtimeInputs = [
element-desktop
telegram-desktop
thunderbird
discord
];
text = ''
thunderbird &
sleep 0.1
element-desktop &
sleep 0.1
Telegram &
sleep 0.1
discord &
'';
}