zen-browser: move package name oddity to overlay

This commit is contained in:
Primrose 2025-11-23 10:57:12 +08:00
parent d74245aff7
commit 7549b79730
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 13 additions and 12 deletions

View file

@ -1,15 +1,19 @@
let
sources = import ../../npins;
in
final: _: {
inherit (sources.zen-browser.asFlake.packages.${final.system})
beta-unwrapped
twilight-unwrapped
twilight-official-unwrapped
final: _:
let
zenpkgs = sources.zen-browser.asFlake.packages.${final.system};
in
{
# TODO: upstream default is broken? They default to zen-twilight
"zen-beta-unwrapped" = zenpkgs."beta-unwrapped";
"zen-twilight-unwrapped" = zenpkgs."twilight-unwrapped";
"zen-twilight-official-unwrapped" = zenpkgs."twilight-official-unwrapped";
beta # default
# default
"zen-beta" = zenpkgs."beta";
twilight
twilight-official
;
"zen-twilight" = zenpkgs."twilight";
"zen-twilight-official" = zenpkgs."twilight-official";
}