An open API service indexing awesome lists of open source software.

https://github.com/anders130/zenix

home-manager module for zen-browser with custom theme
https://github.com/anders130/zenix

css home-manager-module nix zen-browser

Last synced: 4 months ago
JSON representation

home-manager module for zen-browser with custom theme

Awesome Lists containing this project

README

          

# zenix

A flake for [zen-browser](https://github.com/zen-browser/desktop). It wraps the [home-manager](https://github.com/nix-community/home-manager) module for firefox.

## Usage

`flake.nix`:

```nix
{
inputs.zenix.url = "github:anders130/zenix";
}
```

`home.nix`:

```nix
{
imports = [inputs.zenix.hmModules.default];
programs.zenix = {
enable = true;
package = pkgs.zen-browser;
chrome = {
findbar = true;
hideTitlebarButtons = true;
};
profiles = rec {
default = {
isDefault = true;
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
];
};
work = default // {
isDefault = false;
};
};
};
}
```