1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
andrey_varnavskiy 7edd41d722 small
2024-12-16 06:07:05 +05:00

16 lines
248 B
Nix

{ lib, ... }: {
programs.alacritty = {
enable = true;
settings = {
window.opacity = 1.0;
font = {
builtin_box_drawing = true;
normal = {
style = lib.mkForce "Bold";
};
};
};
};
}