mirror of
https://github.com/danth/stylix
synced 2024-11-22 20:23:15 +00:00
7682713f6a
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>
48 lines
1.5 KiB
Nix
48 lines
1.5 KiB
Nix
{ config, lib, ... }:
|
|
|
|
with config.lib.stylix.colors.withHashtag;
|
|
|
|
{
|
|
options.stylix.targets.nushell.enable =
|
|
config.lib.stylix.mkEnableTarget "Nushell" true;
|
|
|
|
# Adapted from https://www.nushell.sh/book/coloring_and_theming.html#theming
|
|
config.programs.nushell.extraConfig = lib.mkIf (config.stylix.enable && config.stylix.targets.nushell.enable) ''
|
|
$env.config.color_config = {
|
|
seperator: "${base03}"
|
|
leading_trailing_space_bg: "${base04}"
|
|
header: "${base0B}"
|
|
date: "${base0E}"
|
|
filesize: "${base0D}"
|
|
row_index: "${base0C}"
|
|
bool: "${base08}"
|
|
int: "${base0B}"
|
|
duration: "${base08}"
|
|
range: "${base08}"
|
|
float: "${base08}"
|
|
string: "${base04}"
|
|
nothing: "${base08}"
|
|
binary: "${base08}"
|
|
cellpath: "${base08}"
|
|
hints: dark_gray
|
|
|
|
shape_garbage: { fg: "${base07}" bg: "${base08}" }
|
|
shape_bool: "${base0D}"
|
|
shape_int: { fg: "${base0E}" attr: b }
|
|
shape_float: { fg: "${base0E}" attr: b }
|
|
shape_range: { fg: "${base0A}" attr: b }
|
|
shape_internalcall: { fg: "${base0C}" attr: b }
|
|
shape_external: "${base0C}"
|
|
shape_externalarg: { fg: "${base0B}" attr: b }
|
|
shape_literal: "${base0D}"
|
|
shape_operator: "${base0A}"
|
|
shape_signature: { fg: "${base0B}" attr: b }
|
|
shape_string: "${base0B}"
|
|
shape_filepath: "${base0D}"
|
|
shape_globpattern: { fg: "${base0D}" attr: b }
|
|
shape_variable: "${base0E}"
|
|
shape_flag: { fg: "${base0D}" attr: b }
|
|
shape_custom: { attr: b }
|
|
}
|
|
'';
|
|
}
|