nix-config/modules/home-manager/msg/default.nix

26 lines
614 B
Nix

{ config, pkgs, ... }:
{
home.packages = [
pkgs.dino
pkgs.element-desktop
pkgs.profanity
pkgs.signal-desktop
pkgs.tdesktop
pkgs.whatsapp-for-linux
pkgs.slack
];
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
'';
}