Files
nixos-config/home/common/programs/zen-browser.nix
T
Miguel Palhas afd9646189
CI / lint (push) Successful in 1m8s
CI / eval (push) Failing after 2m24s
zen: switch from twilight nightly to stable channel
twilight re-publishes under the same 1.22t tag, so the pinned hash goes
stale and `nh home switch` fails with a fixed-output hash mismatch. Move
to the stable `default` package (branded zen-beta, 1.21.5b), which uses
proper versioned releases.

- zen-browser.nix: twilight-official -> default
- xdg.nix: zen-twilight.desktop -> zen-beta.desktop mimeapp defaults
- flake.lock: bump zen-browser input

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-06 09:38:31 +01:00

7 lines
305 B
Nix

{ inputs, pkgs, ... }:
{
# `default` is Zen's stable channel (branded "zen-beta", binary/desktop `zen-beta`).
# Avoids twilight's recurring hash-mismatch breakage (nightly re-tags under the same version).
home.packages = [ inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default ];
}