Rename pkgs to packages

This commit is contained in:
2026-03-23 20:43:11 +01:00
parent 8de280d7e5
commit b31791b9ef
21 changed files with 1 additions and 1 deletions

View 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 &
'';
}