26 lines
614 B
Nix
26 lines
614 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
|
||
|
{
|
||
|
home.packages = [
|
||
|
pkgs.dino
|
||
|
pkgs.element-desktop
|
||
|
pkgs.ferdi
|
||
|
pkgs.profanity
|
||
|
pkgs.signal-desktop
|
||
|
pkgs.tdesktop
|
||
|
pkgs.whatsapp-for-linux
|
||
|
];
|
||
|
home.file.".local/share/applications/userapp-Telegram Desktop.desktop".text =
|
||
|
''
|
||
|
[Desktop Entry]
|
||
|
Encoding=UTF-8
|
||
|
Version=1.0
|
||
|
Type=Application
|
||
|
NoDisplay=true
|
||
|
Exec=${pkgs.tdesktop}/bin/bin/.telegram-desktop-wrapped -workdir ${config.home.homeDirectory}/.local/share/TelegramDesktop/ -- %u
|
||
|
Name=Telegram Desktop
|
||
|
Comment=Custom definition for Telegram Desktop
|
||
|
'';
|
||
|
}
|