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