Zen Browser: Difference between revisions
Appearance
Squawkykaka (talk | contribs) This page discusses on how to install the zen browser |
Squawkykaka (talk | contribs) mNo edit summary |
||
| Line 1: | Line 1: | ||
{{Infobox application | |||
| name = Zen | |||
| type = Native | |||
| image = https://raw.githubusercontent.com/zen-browser/.github/refs/heads/main/profile/logo-black.png | |||
| website = https://zen-browser.app/ | |||
| bugTracker = https://github.com/zen-browser/desktop/issues | |||
| github = https://github.com/zen-browser/desktop | |||
| programmingLanguage = C++ | |||
}} | |||
'''Zen''' is a firefox based browser that promises a calmer internet, and features a sideways based tab system. | '''Zen''' is a firefox based browser that promises a calmer internet, and features a sideways based tab system. | ||
| Line 30: | Line 39: | ||
} | } | ||
</syntaxhighlight>After rebuilding, Zen will be installed system-wide. | </syntaxhighlight>After rebuilding, Zen will be installed system-wide. | ||
Revision as of 20:11, 23 November 2025
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.