From 8245b238ec7ed621d046f18c2a5496e617728424 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 25 Nov 2024 15:42:42 +0100 Subject: [PATCH] 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. --- homes/aarch64-darwin/harald@m4/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/homes/aarch64-darwin/harald@m4/default.nix b/homes/aarch64-darwin/harald@m4/default.nix index e00a2bf..467fabd 100644 --- a/homes/aarch64-darwin/harald@m4/default.nix +++ b/homes/aarch64-darwin/harald@m4/default.nix @@ -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; }; - }; + }; }