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
- Host: GitHub
- URL: https://github.com/anders130/zenix
- Owner: anders130
- License: mit
- Created: 2024-11-22T16:47:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-29T21:35:04.000Z (11 months ago)
- Last Synced: 2025-11-09T02:32:21.615Z (8 months ago)
- Topics: css, home-manager-module, nix, zen-browser
- Language: Nix
- Homepage:
- Size: 60.5 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
};
};
};
}
```