From 90ce0fafeb55f7866b722d20ba530803b3828577 Mon Sep 17 00:00:00 2001 From: Jonathan Dickinson Date: Tue, 14 Oct 2025 13:13:38 -0700 Subject: [PATCH] postman: add scheme handler to desktop item. Adds the `x-scheme-handler/postman` to the Linux desktop item. Postman needs this for anything related to login because those flows happen in the browser. Also sets startup notification config based on the Postman flatpak. --- pkgs/by-name/po/postman/linux.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/po/postman/linux.nix b/pkgs/by-name/po/postman/linux.nix index 876a6a55f207..196ae0419a16 100644 --- a/pkgs/by-name/po/postman/linux.nix +++ b/pkgs/by-name/po/postman/linux.nix @@ -76,6 +76,9 @@ stdenv.mkDerivation { desktopName = "Postman"; genericName = "Postman"; categories = [ "Development" ]; + mimeTypes = [ "x-scheme-handler/postman" ]; + startupNotify = true; + startupWMClass = "postman"; }) ];