From 612ee7f2faf8597e14ea9eb983fe85dbaeb4a131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Sat, 17 Jan 2026 22:33:17 -0500 Subject: [PATCH] fix: ensure missing desktop icon for twilight official (#203) Resolves https://github.com/0xc000022070/zen-browser-flake/issues/170. --- default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 7078b1e..afcf0f6 100644 --- a/default.nix +++ b/default.nix @@ -17,7 +17,9 @@ in rec { icon = "zen-browser"; }; twilight = pkgs.wrapFirefox twilight-unwrapped {}; - twilight-official = pkgs.wrapFirefox twilight-official-unwrapped {}; + twilight-official = pkgs.wrapFirefox twilight-official-unwrapped { + icon = "zen-twilight"; + }; default = beta; }