nix-dotfiles/modules/whatsapp.nix

21 lines
429 B
Nix

{ pkgs, ... }:
with pkgs;
let
link = "https://web.whatsapp.com";
cmd = "${google-chrome}/bin/google-chrome-stable --app=${link}";
desktopItem = pkgs.makeDesktopItem
{
name = "Whatsapp";
type = "Application";
exec = cmd;
icon = "whatsapp";
desktopName = "Whatsapp";
comment = "Whatsapp web client";
categories = "Office;";
};
in
{
home.packages = [
desktopItem
];
}