Skip to content

anders130/zenix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 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.homeModules.default];
    nixpkgs.overlays = [inputs.zenix.overlays.default];
    programs.zenix = {
        enable = true;
        chrome = {
            findbar = true;
            hideTitlebarButtons = true;
        };
        profiles = rec {
            default = {
                id = 0;
                isDefault = true;
                extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
                    ublock-origin
                ];
            };
            work = default // {
                id = 1;
                isDefault = false;
            };
        };
    };
}

About

home-manager module for zen-browser with custom theme

Topics

Resources

License

Stars

Watchers

Forks