mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
chore: Improve formatting
No need to write stylix so many times.
This commit is contained in:
parent
bc44af4825
commit
12464e8b65
@ -6,47 +6,49 @@ let
|
|||||||
font-size = 11;
|
font-size = 11;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
stylix.image = ../assets/wallpaper.png;
|
stylix = {
|
||||||
stylix.polarity = "dark";
|
image = ../assets/wallpaper.png;
|
||||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/${theme}.yaml";
|
polarity = "dark";
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/${theme}.yaml";
|
||||||
|
|
||||||
stylix.opacity = {
|
opacity = {
|
||||||
terminal = opacity;
|
terminal = opacity;
|
||||||
popups = opacity;
|
popups = opacity;
|
||||||
};
|
|
||||||
|
|
||||||
stylix.cursor = with pkgs; {
|
|
||||||
package = phinger-cursors;
|
|
||||||
name = "phinger-cursors";
|
|
||||||
size = 24;
|
|
||||||
};
|
|
||||||
|
|
||||||
stylix.fonts = with pkgs; {
|
|
||||||
serif = {
|
|
||||||
package = (callPackage ../packages/aleo-fonts.nix { });
|
|
||||||
name = "Aleo";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
sansSerif = {
|
cursor = with pkgs; {
|
||||||
package = noto-fonts-cjk-sans;
|
package = phinger-cursors;
|
||||||
name = "Noto Sans CJK JP";
|
name = "phinger-cursors";
|
||||||
|
size = 24;
|
||||||
};
|
};
|
||||||
|
|
||||||
monospace = {
|
fonts = with pkgs; {
|
||||||
package = maple-mono;
|
serif = {
|
||||||
name = "Maple Mono";
|
package = (callPackage ../packages/aleo-fonts.nix { });
|
||||||
};
|
name = "Aleo";
|
||||||
|
};
|
||||||
|
|
||||||
emoji = {
|
sansSerif = {
|
||||||
package = noto-fonts-emoji;
|
package = noto-fonts-cjk-sans;
|
||||||
name = "Noto Color Emoji";
|
name = "Noto Sans CJK JP";
|
||||||
};
|
};
|
||||||
|
|
||||||
sizes = {
|
monospace = {
|
||||||
applications = font-size;
|
package = maple-mono;
|
||||||
desktop = font-size;
|
name = "Maple Mono";
|
||||||
popups = font-size;
|
};
|
||||||
terminal = font-size;
|
|
||||||
|
emoji = {
|
||||||
|
package = noto-fonts-emoji;
|
||||||
|
name = "Noto Color Emoji";
|
||||||
|
};
|
||||||
|
|
||||||
|
sizes = {
|
||||||
|
applications = font-size;
|
||||||
|
desktop = font-size;
|
||||||
|
popups = font-size;
|
||||||
|
terminal = font-size;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user