Skip to content

home-manager module for zen-browser with custom theme

License

Notifications You must be signed in to change notification settings

anders130/zenix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zenix

A flake for zen-browser. It wraps the home-manager module for firefox.

Usage

flake.nix:

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

home.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;
            };
        };
    };
}

About

home-manager module for zen-browser with custom theme

Topics

Resources

License

Stars

Watchers

Forks