mirror of
https://github.com/danth/stylix
synced 2025-02-16 21:38:40 +00:00
Add a 'stylix.enable' option to enable or disable all Stylix modules in order to resolve issues similar to [2]. To align with the default 'lib.mkEnableOption' [1] behavior, 'stylix.enable' defaults to 'false'. BREAKING CHANGE: Stylix is disabled by default. To enable it, use: stylix.enable = true; [1]: https://github.com/NixOS/nixpkgs/blob/23.11/lib/options.nix#L91-L105 [2]: https://github.com/danth/stylix/issues/216 Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com> Co-authored-by: Jalil David Salamé Messina <jalil.salame@gmail.com> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
25 lines
907 B
Nix
25 lines
907 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
with config.lib.stylix.colors;
|
|
|
|
{
|
|
options.stylix.targets.nixos-icons.enable =
|
|
config.lib.stylix.mkEnableTarget "the NixOS logo" true;
|
|
|
|
config.nixpkgs.overlays = lib.mkIf (config.stylix.enable && config.stylix.targets.nixos-icons.enable) [(self: super: {
|
|
nixos-icons = super.nixos-icons.overrideAttrs (oldAttrs: {
|
|
src = pkgs.applyPatches {
|
|
src = oldAttrs.src;
|
|
prePatch = ''
|
|
substituteInPlace logo/nix-snowflake-white.svg --replace-fail '#ffffff' '#${base05}'
|
|
|
|
# Insert attribution comment after the XML prolog
|
|
sed \
|
|
--in-place \
|
|
'2i<!-- The original NixOS logo from ${oldAttrs.src.url} is licensed under https://creativecommons.org/licenses/by/4.0 and has been modified to match the ${scheme} color scheme. -->' \
|
|
logo/nix-snowflake-white.svg
|
|
'';
|
|
};
|
|
});
|
|
})];
|
|
}
|