Start migration to using flake-parts
This commit is contained in:
27
packages/open-messaging/default.nix
Normal file
27
packages/open-messaging/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
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 &
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user