Use alejandra formatter / fix warnings

This commit is contained in:
DashieTM 2025-02-15 16:23:22 +01:00
parent c5b1041bbb
commit 693d4e3c70
70 changed files with 1424 additions and 1547 deletions

View file

@ -4,8 +4,7 @@
options,
pkgs,
...
}:
{
}: {
options.mods.stylix = {
colorscheme = lib.mkOption {
default = "catppuccin-mocha";
@ -34,8 +33,7 @@
base0E = "BB9AF7";
base0F = "F7768E";
};
type =
with lib.types;
type = with lib.types;
oneOf [
str
attrs
@ -57,7 +55,7 @@
name = "catppuccin-mocha-lavender-cursors";
size = 24;
};
example = { };
example = {};
type = with lib.types; attrsOf anything;
description = "Xcursor config";
};
@ -83,7 +81,7 @@
name = "Noto Color Emoji";
};
};
example = { };
example = {};
type = with lib.types; attrsOf anything;
description = "font config";
};
@ -101,10 +99,9 @@
fonts = config.mods.stylix.fonts;
cursor = config.mods.stylix.cursor;
base16Scheme = (
if builtins.isAttrs config.mods.stylix.colorscheme then
config.mods.stylix.colorscheme
else
"${pkgs.base16-schemes}/share/themes/${config.mods.stylix.colorscheme}.yaml"
if builtins.isAttrs config.mods.stylix.colorscheme
then config.mods.stylix.colorscheme
else "${pkgs.base16-schemes}/share/themes/${config.mods.stylix.colorscheme}.yaml"
);
};
})