Compare commits

..

No commits in common. "d252914f55b1b5824a290aa6aede355ddf72f886" and "c7cb48a6ec3535737fed7bf45d1a159eac4d3931" have entirely different histories.

3 changed files with 20 additions and 2 deletions

View file

@ -56,6 +56,7 @@ in
../overlays/eepy.nix
../overlays/calibre-no-mime.nix
../overlays/fcitx5-table-extra-taiwanese.nix
../overlays/zen-browser.nix
../overlays/iosevka.nix
../packages/overlay.nix

View file

@ -66,8 +66,6 @@ in
"browser.ctrlTab.sortByRecentlyUsed" = false;
"layout.css.devPixelsPerPx" = 1.1;
"browser.startup.page" = 1;
"browser.translations.automaticallyPopup" = false;
"browser.tabs.closeWindowWithLastTab" = true;
# open links in new window
# this works a lot better with xmonad where I have a bunch of windows

View file

@ -0,0 +1,19 @@
let
sources = import ../../npins;
in
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";
# default
"zen-beta" = zenpkgs."beta";
"zen-twilight" = zenpkgs."twilight";
"zen-twilight-official" = zenpkgs."twilight-official";
}