{ 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 ]; }