This is a nix flake for the Zen browser.
- Linux and MacOS support
- Available for x86_64 and aarch64
- Support for twilight and beta
- Policies can be modified via Home Manager and unwrapped package override
- Fast & Automatic updates via GitHub Actions
- Browser update checks are disabled by default
- The default twilight version is reliable and reproducible
- Declarative [Work]Spaces (including themes, icons, containers)
Just add it to your NixOS flake.nix or home-manager:
inputs = {
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs = {
# IMPORTANT: we're using "libgbm" and is only available in unstable so ensure
# to have it up-to-date or simply don't specify the nixpkgs input
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
# ...
}Note
Beta Branch: To keep the flake input only sync with beta updates, use
inputs.zen-browser.url = "github:0xc000022070/zen-browser-flake/beta".
Important
Use the twilight package to guarantee reproducibility, the artifacts of that package are re-uploaded to this repository. However, if you don't agree with that and want to use the official artifacts, use twilight-official.
{
# home.nix
imports = [
inputs.zen-browser.homeModules.beta
# or inputs.zen-browser.homeModules.twilight
# or inputs.zen-browser.homeModules.twilight-official
];
programs.zen-browser.enable = true;
}Then build your Home Manager configuration
$ home-manager switchCheck the Home Manager Reference and my rice here! :)
To integrate Zen Browser to your NixOS/Home Manager configuration, add the
following to your environment.systemPackages or home.packages:
# options are: 'x86_64-linux', 'aarch64-linux' and 'aarch64-darwin'
inputs.zen-browser.packages."${system}".default # beta
inputs.zen-browser.packages."${system}".beta
inputs.zen-browser.packages."${system}".twilight
# IMPORTANT: this package relies on the twilight release artifacts from the
# official zen repo and those artifacts are always replaced, causing hash mismatch
inputs.zen-browser.packages."${system}".twilight-official
# you can even override the package policies
inputs.zen-browser.packages."${system}".default.override {
policies = {
DisableAppUpdate = true;
DisableTelemetry = true;
# more and more
};
}Afterwards you can just build your configuration
$ sudo nixos-rebuild switch # or home-manager switch# it's a symlink, if you install two versions they will collide and you should either specify "zen-twilight" or "zen-beta"
$ zenThis is only an attempt to document some of the options provided by the mkFirefoxModule module, so feel free to experiment with other program options and help with further documentation.
programs.zen-browser.*
-
enable(boolean): Enable the home manager config. -
nativeMessagingHosts(listOf package): To enable communication between the browser and native applications.Example:
{ # Add any other native connectors here programs.zen-browser.nativeMessagingHosts = [pkgs.firefoxpwa]; }
policies(attrsOf anything): You can also modify the extensions and preferences from here.
Important
If you're on macOS you'll need to configure programs.zen-browser.darwinDefaultsId first.
{
programs.zen-browser.policies = {
AutofillAddressEnabled = true;
AutofillCreditCardEnabled = false;
DisableAppUpdate = true;
DisableFeedbackCommands = true;
DisableFirefoxStudies = true;
DisablePocket = true;
DisableTelemetry = true;
DontCheckDefaultBrowser = true;
NoDefaultBookmarks = true;
OfferToSaveLogins = false;
EnableTrackingProtection = {
Value = true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
};
};
}For more policies read this.
{
programs.zen-browser.policies = let
mkLockedAttrs = builtins.mapAttrs (_: value: {
Value = value;
Status = "locked";
});
in {
Preferences = mkLockedAttrs {
"browser.tabs.warnOnClose" = false;
# and so on...
};
};
}Check this comment.
{
programs.zen-browser.policies = let
mkExtensionSettings = builtins.mapAttrs (_: pluginId: {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/${pluginId}/latest.xpi";
installation_mode = "force_installed";
});
in {
ExtensionSettings = mkExtensionSettings {
"[email protected]" = "wappalyzer";
"{85860b32-02a8-431a-b2b1-40fbd64c9c69}" = "github-file-icons";
};
};
}This follows the pattern:
"extension-ID" = "extension-name";
You can find the extension-name in the extension's URL:
https://addons.mozilla.org/en-US/firefox/addon/<extension-name>
The extension-ID can be found by
- installing the extensions you want to use as you would normally
- use about:debugging#/runtime/this-firefox to find their
Extension ID
Or follow the following steps to find their IDs manually:
- Go to Add-ons for Firefox.
- Go to the page of the extension that you want to declare.
- Go to "See all versions".
- Copy the link from any button to "Download file".
- Exec wget with the output of this command:
echo "<paste-the-link-here>" \
| sed -E 's|https://addons.mozilla.org/firefox/downloads/file/[0-9]+/([^/]+)-[^/]+\.xpi|\1|' \
| tr '_' '-' \
| awk '{print "https://addons.mozilla.org/firefox/downloads/latest/" $1 "/latest.xpi"}'- Run
unzip -*.xpi -d my-extension && cd my-extension. - Run
cat manifest.json | jq -r '.browser_specific_settings.gecko.id'and use the result for the entry key. - Don't forget to add the
install_urland setinstallation_modetoforce_installed.
Alternatively, create a bash script to automatically extract the extension-ID from the .xpi link you obtained in step 4 above:
#!/usr/bin/env bash
# Check if URL parameter is provided
if [ -z "$1" ]; then
echo "Error: Please provide a Firefox extension URL"
echo "Usage: $0 <extension_url>"
exit 1
fi
# Store the input URL
PLUGIN_URL="$1"
# Create temporary directory
TEMP_DIR="extension-id-$(date +%s)"
mkdir "$TEMP_DIR" || { echo "Failed to create directory"; exit 1; }
cd "$TEMP_DIR" || { echo "Failed to change directory"; exit 1; }
# Extract extension name and construct download URL
DOWNLOAD_URL=$(echo "$PLUGIN_URL" \
| sed -E 's|https://addons.mozilla.org/firefox/downloads/file/[0-9]+/([^/]+)-[^/]+\.xpi|\1|' \
| tr '_' '-' \
| awk '{print "https://addons.mozilla.org/firefox/downloads/latest/" $1 "/latest.xpi"}')
# Download the extension
wget -q "$DOWNLOAD_URL" -O latest.xpi || { echo "Failed to download extension"; cd ..; rm -rf "$TEMP_DIR"; exit 1; }
# Unzip the extension
unzip -q latest.xpi -d unpacked || { echo "Failed to unzip extension"; cd ..; rm -rf "$TEMP_DIR"; exit 1; }
# Extract and display the ID
echo "The extension-ID is:"
jq -r '.browser_specific_settings.gecko.id' unpacked/manifest.json || { echo "Failed to extract entry key"; cd ..; rm -rf "$TEMP_DIR"; exit 1; }
# Cleanup
cd ..
rm -rf "$TEMP_DIR"You can also use rycee's firefox-addons like this:
inputs = {
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
}{
programs.zen-browser.profiles.<name>.extensions.packages =
with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
ublock-origin
dearrow
proton-pass
...
];
];
}You can search for package names by going to the NUR website
Important
Depending on how your flake is configured, you might not be able to install extensions marked "unfree" like improved-tube. For those extensions, the only way to install them is through the firefox store
If you are not using the
fireox-addons repo, your
configuration will still build with the configuration, but the extension will
not install.
Doing so through the repo will throw a build error warning you about the
package being unfree
Warning
Spaces declaration may change your rebuild experience with Home Manager. Due
to limitations on how Zen handles spaces, the updating of them is done via a
activation script on your home-manager-<user>.service. This may cause the
service to fail, to prevent this, it is recommended to close your Zen browser
instance before rebuilding.
profiles.*.spaces(attrsOf submodule): Declare profile's [work]spaces.name(string) Name of space, defaults to submodule/attribute name.id(string) Required. UUID v4 of space. Changing this after a rebuild will re-create the space as a new one, losing opened tabs, groups, etc. IfspacesForceis true, the space with the previous UUID will be deleted.position(unsigned integer) Position/order of space in the left bar.icon(null or (string or path)) Emoji, URI or file path for icon to be used as space icon.container(null or unsigned integer) Container ID to be used as default in space.theme.type(nullOr string) Type of theme, defaults to "gradient".theme.color(listOf submodule) List of JSON colors to be used as theme:red(integer between 0 and 255) Red value of color (first value of "c" array in JSON object).green(integer between 0 and 255) Green value of color (second value of "c" array in JSON object).blue(integer between 0 and 255) Blue value of color (third value of "c" array in JSON object).custom(boolean) Is custom color ("isCustom" in JSON object).algorithm(enum of "complementary", "floating" or "analogous") color algorithm (defaults to "floating").lightness(integer) Lightness of color.position.x(integer) X Position of color in gradient picker on Zen browser.position.y(integer) Y Position of color in gradient picker on Zen browser.type(enum of "undefined" or "explicit-lightness") Type of color (default to "undefined").
theme.opacity(null or float) Opacity of theme (defaults to 0.5).theme.rotation(null or integer) Rotation of theme gradient (defaults to null).theme.texture(null or float) Amount of texture of theme (defaults to 0.0).
profiles.*.spacesForce(boolean) Whether to delete existing spaces not declared in the configuration. Recommended to make spaces fully declarative (defaults to false).
{
programs.zen-browser = {
enable = true;
profiles."default" = {
containersForce = true;
containers = {
Personal = {
color = "purple";
icon = "fingerprint";
id = 1;
};
Work = {
color = "blue";
icon = "briefcase";
id = 2;
};
Shopping = {
color = "yellow";
icon = "dollarsign";
id = 3;
};
};
spacesForce = true;
spaces = let
containers = config.programs.zen-browser.profiles."default".containers;
in {
"Space" = {
id = "c6de089c-410d-4206-961d-ab11f988d40a";
position = 1000;
};
"Work" = {
id = "cdd10fab-4fc5-494b-9041-325e5759195b";
icon = "chrome://browser/skin/zen-icons/selectable/star-2.svg";
container = containers."Work".id;
position = 2000;
};
"Shopping" = {
id = "78aabdad-8aae-4fe0-8ff0-2a0c6c4ccc24";
icon = "💸";
container = containers."Shopping".id;
position = 3000;
};
};
};
};
}Zen has to be manually added to the list of browsers that 1Password will
communicate with. See this wiki article
for more information. To enable 1Password integration, you need to add the
browser identifier to the file /etc/1password/custom_allowed_browsers.
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
.zen-wrapped
''; # or just "zen" if you use unwrapped package
mode = "0755";
};
};To enable communication between the browser and native applications, you can use the following configuration pattern.
Check the Home Manager Reference.
{
home.packages = [
(
inputs.zen-browser.packages."${system}".default.override {
nativeMessagingHosts = [pkgs.firefoxpwa];
}
)
];
}To set Zen Browser as the default application for various file types and URL schemes, you can add the following configuration to your Home Manager setup:
{
xdg.mimeApps = let
value = let
zen-browser = inputs.zen-browser.packages.${system}.beta; # or twilight
in
zen-browser.meta.desktopFileName;
associations = builtins.listToAttrs (map (name: {
inherit name value;
}) [
"application/x-extension-shtml"
"application/x-extension-xhtml"
"application/x-extension-html"
"application/x-extension-xht"
"application/x-extension-htm"
"x-scheme-handler/unknown"
"x-scheme-handler/mailto"
"x-scheme-handler/chrome"
"x-scheme-handler/about"
"x-scheme-handler/https"
"x-scheme-handler/http"
"application/xhtml+xml"
"application/json"
"text/plain"
"text/html"
]);
in {
associations.added = associations;
defaultApplications = associations;
};
}This usually happens when the Zen team deletes a beta release from the official repository. They do this to keep only stable artifacts available. See #105 and #112 for further context.
You can either revert your nix input update or wait until CI refreshes sources.json.
Make sure that you update your flake.lock as to sync up nixpkgs version. Or make
zen follow your system nixpkgs by using inputs.nixpkgs.follows = "nixpkgs"
(assuming your nixpkgs input is named nixpkgs).
Check No WebGL context for details.
You may want to set policies.DisableAppUpdate = false; in your policies.json
file. See #48.
Before contributing, please make sure that your code is formatted correctly by running
$ nix fmtThis project is licensed under the MIT License.