Refactor alacritty.toml configuration for clarity

Reformat the configuration generation to enhance readability and ensure consistent indentation. This change does not alter functionality, but aligns the style with the rest of the codebase.
This commit is contained in:
Harald Hoyer 2024-11-25 15:42:42 +01:00
parent a8acb0900b
commit 8245b238ec

View file

@ -28,9 +28,11 @@
};
};
xdg.configFile."alacritty/alacritty.toml".source = (pkgs.formats.toml { }).generate "alacritty-config" {
xdg.configFile."alacritty/alacritty.toml".source =
(pkgs.formats.toml { }).generate "alacritty-config"
{
font = {
size = 17;
};
};
};
}