mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
16 lines
248 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|