11.stylix/modules/zen-browser/hm.nix
0xda157 477c504322
zen-browser: add reader mode support (#2157)
Link: https://github.com/nix-community/stylix/pull/2157

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2026-01-28 15:26:40 +01:00

67 lines
1.8 KiB
Nix

{
mkTarget,
lib,
config,
options,
...
}:
mkTarget {
options = {
profileNames = lib.mkOption {
description = "The Zen Browser profile names to apply styling on.";
type = lib.types.listOf lib.types.str;
default = [ ];
example = [ "default" ];
};
enableCss = lib.mkOption {
type = lib.types.bool;
default = true;
description = "enables userChrome and userContent css styles for the browser";
};
};
config = lib.optionals (options.programs ? zen-browser) [
(
{ cfg }:
{
warnings =
lib.optional (config.programs.zen-browser.enable && cfg.profileNames == [ ])
''stylix: zen-browser: `config.stylix.targets.zen-browser.profileNames` is not set. Declare profile names with 'config.stylix.targets.zen-browser.profileNames = [ "<PROFILE_NAME>" ];'.'';
}
)
(
{ cfg, fonts }:
{
programs.zen-browser.profiles = lib.genAttrs cfg.profileNames (_: {
settings = {
"font.name.monospace.x-western" = fonts.monospace.name;
"font.name.sans-serif.x-western" = fonts.sansSerif.name;
"font.name.serif.x-western" = fonts.serif.name;
};
});
}
)
(import ../firefox/reader-mode.nix {
inherit lib;
name = "zen-browser";
})
(
{ cfg, colors }:
{
programs.zen-browser.profiles = lib.mkIf cfg.enableCss (
lib.genAttrs cfg.profileNames (_: {
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
userChrome = import ./userChrome.nix { inherit colors; };
userContent = import ./userContent.nix { inherit colors; };
})
);
}
)
];
}