Optionalize mkTarget's 'humanName' and 'name' arguments by inferring
'humanName' from the 'name' attribute in the /modules/<MODULE>/meta.nix
file, and 'name' from the /modules/<NAME>/ directory name.
Inferring the 'humanName' and 'name' arguments ensures consistency and
reduces boilerplate.
The 'humanName' and 'name' arguments are optionalized instead of removed
because complex modules generating target derivations need to
distinguish between them.
Closes: https://github.com/nix-community/stylix/issues/1661
(cherry picked from commit dfc859f54d)
63 lines
1.7 KiB
Nix
63 lines
1.7 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;
|
|
};
|
|
});
|
|
}
|
|
)
|
|
(
|
|
{ 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; };
|
|
})
|
|
);
|
|
}
|
|
)
|
|
];
|
|
}
|