Skip to content

Commit

Permalink
[𝚫] (alacritty): switching out font weights a little
Browse files Browse the repository at this point in the history
  • Loading branch information
Icy-Thought committed Jan 16, 2024
1 parent 3e1d8d7 commit d3d59d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/desktop/terminal/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ in {
alacritty-conf = {
target = "alacritty/config/${active}.toml";
source = let
inherit (config.modules.themes.font) mono;
inherit (config.modules.themes.font) mono sans;
inherit (config.modules.themes.colors.main) bright normal types;
tomlFormat = pkgs.formats.toml {};
in
Expand All @@ -150,22 +150,22 @@ in {

normal = {
family = "${mono.family}";
style = "${mono.weight}";
style = "${sans.weight}";
};

italic = {
family = "${mono.family}";
style = "${mono.weight} Italic";
style = "${sans.weight} Italic";
};

bold = {
family = "${mono.family}";
style = "SemiBold";
style = "${mono.weight}";
};

bold_italic = {
family = "${mono.family}";
style = "SemiBold Italic";
style = "${mono.weight} Italic";
};

offset = {
Expand Down

0 comments on commit d3d59d2

Please sign in to comment.