Jump to content

Zen Browser: Difference between revisions

From Official NixOS Wiki
mNo edit summary
No edit summary
Line 2: Line 2:
| name = Zen
| name = Zen
| type = Native
| type = Native
| image = https://raw.githubusercontent.com/zen-browser/.github/refs/heads/main/profile/logo-black.png
| image = Zen-logo-black.png
| website = https://zen-browser.app/
| website = https://zen-browser.app/
| bugTracker = https://github.com/zen-browser/desktop/issues
| bugTracker = https://github.com/zen-browser/desktop/issues

Revision as of 20:13, 23 November 2025

Zen

Native Application

100%

Zen is a firefox based browser that promises a calmer internet, and features a sideways based tab system.

Installation

Shell (Flakes)

nix shell github:youwen5/zen-browser-flake

The command above makes zen available in your current shell.

System setup (Flakes)

First add the zen flake to your flake.nix

{
  ...
  inputs = {
    ...
    zen-browser = {
      url = "github:youwen5/zen-browser-flake";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  }
}

Then add zen to your environment.systemPackages

{
  inputs,
  ...
}: {
  environment.systemPackages = [
    inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
  ];
}

After rebuilding, Zen will be installed system-wide.