alacritty: migrate to font modules

This commit is contained in:
Aly Raffauf 2024-08-07 22:03:40 -04:00
parent ada438f374
commit 9a285c0c27

View file

@ -2,8 +2,10 @@
config,
lib,
...
}: {
config = lib.mkIf config.ar.home.apps.alacritty.enable {
}: let
cfg = config.ar.home;
in {
config = lib.mkIf cfg.apps.alacritty.enable {
programs.alacritty = {
enable = true;
settings = {
@ -11,8 +13,8 @@
draw_bold_text_with_bright_colors = true;
primary = {
background = "${config.ar.home.theme.colors.background}";
foreground = "${config.ar.home.theme.colors.text}";
background = "${cfg.theme.colors.background}";
foreground = "${cfg.theme.colors.text}";
};
transparent_background_colors = true;
@ -20,7 +22,7 @@
font = {
normal = {
family = "UbuntuSans Nerd Font";
family = cfg.theme.font.monospaceFont.name;
style = "Regular";
};