Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 841 Bytes

README.md

File metadata and controls

40 lines (34 loc) · 841 Bytes

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