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