nixcfg/homes/aarch64-darwin/harald@m4/default.nix
Harald Hoyer 8245b238ec 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.
2024-11-25 15:42:42 +01:00

39 lines
698 B
Nix

{
lib,
pkgs,
config,
...
}:
{
home = {
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
};
metacfg = {
cli-apps = {
bash.enable = true;
fish.enable = true;
#neovim.enable = true;
bat.enable = true;
starship.enable = true;
#home-manager.enable = true;
};
tools = {
#direnv.enable = true;
ssh.enable = true;
git.enable = true;
};
};
xdg.configFile."alacritty/alacritty.toml".source =
(pkgs.formats.toml { }).generate "alacritty-config"
{
font = {
size = 17;
};
};
}