We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c87660 commit 7df5346Copy full SHA for 7df5346
1 file changed
hm-module.nix
@@ -207,10 +207,15 @@ in {
207
programs.zen-browser = {
208
package = lib.mkDefault (
209
(pkgs.wrapFirefox (self.packages.${pkgs.stdenv.hostPlatform.system}."${name}-unwrapped".override {
210
- # Seems like zen uses relative (to the original binary) path to the policies.json file
211
- # and ignores the overrides by pkgs.wrapFirefox
212
- policies = cfg.policies;
213
- }) {}).override
+ # Seems like zen uses relative (to the original binary) path to the policies.json file
+ # and ignores the overrides by pkgs.wrapFirefox
+ policies = cfg.policies;
+ }) {
214
+ icon =
215
+ if name == "beta"
216
+ then "zen-browser"
217
+ else null;
218
+ }).override
219
{
220
extraPrefs = cfg.extraPrefs;
221
extraPrefsFiles = cfg.extraPrefsFiles;
0 commit comments